Add remote troubleshoot button to v1 run view task panel#2460
Open
morgan-wowk wants to merge 1 commit into
Open
Add remote troubleshoot button to v1 run view task panel#2460morgan-wowk wants to merge 1 commit into
morgan-wowk wants to merge 1 commit into
Conversation
🎩 PreviewA preview build has been created at: |
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
6 tasks
dc7beae to
c57042c
Compare
d61a883 to
364e9a6
Compare
364e9a6 to
bb1d986
Compare
c57042c to
29be118
Compare
bb1d986 to
2efae65
Compare
29be118 to
5399f97
Compare
yuechao-qin
requested changes
Jul 10, 2026
yuechao-qin
left a comment
Collaborator
There was a problem hiding this comment.
Getting this error {"detail":"Method Not Allowed"}?
Author
Taking a look - thanks. Maybe be something missing on staging backend. |
yuechao-qin
approved these changes
Jul 10, 2026
yuechao-qin
left a comment
Collaborator
There was a problem hiding this comment.
V1 tested and looks fine in staging.
5399f97 to
b49ddeb
Compare
2efae65 to
f144aca
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Description
Surfaces the optional Remote Troubleshoot action button in the v1 run-view task panel (
TaskOverview). The button component and all of its behavior are introduced in the parent PR; this change only mounts it in the v1 task overview so both run-view implementations expose the action.When a task node is selected, the button appears for executions in a problematic state —
FAILED/CANCELLED/SYSTEM_ERRORimmediately, orPENDING/QUEUEDonce the task has been in that status for 5 minutes. Clicking it opens a modal where the user can add context and submit a request to a configurable endpoint.The feature is opt-in and OSS-friendly: it renders nothing unless
window.__TANGLE_REMOTE_TROUBLESHOOT_ACTION__is configured (seedocs/remote-troubleshoot-action.md), so there is no visible change for default deployments.This is wiring only — no new logic.
TaskOverviewnow readsrunIdfrom the execution data and renders<RemoteTroubleshootButton>with the selected task'srunId,executionId,taskName, andstatus, guarded onrunIdbeing present.Related Issue and Pull requests
RemoteTroubleshootButtoncomponent, the server-sourced (status_history) timer, and the documentation. This PR adds the same button to the v1 task panel.Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
index.html):FAILED/CANCELLED/SYSTEM_ERRORtask immediately, and for aPENDING/QUEUEDtask once it has been in that status for 5 minutes.Additional Comments
No secrets or deployment-specific values are introduced — the endpoint URL and labels are entirely deploy-time configuration provided by the operator.