Helix job monitor: surface work item failures and job errors into AzDO build timeline#16874
Closed
Copilot wants to merge 2 commits into
Closed
Helix job monitor: surface work item failures and job errors into AzDO build timeline#16874Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
…ring job monitoring Agent-Logs-Url: https://github.com/dotnet/arcade/sessions/4ecaafe5-e0d1-44bf-9d46-4d681b570fe0 Co-authored-by: mmitche <8725170+mmitche@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update job monitor to print failed work item info to timeline
Helix job monitor: surface work item failures and job errors into AzDO build timeline
May 22, 2026
Open
3 tasks
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.
WaitForHelixJobCompletionwas silently swallowing per-work-item failure details and logging job-level errors without aFailureCategory, meaning neither showed up as proper annotations in the AzDO build timeline.Changes
WaitForHelixJobCompletion.csFailureCategory.Helix(was untaggedLog.LogError)HashSet<string>; on first detection of each failure, emitLog.LogError(FailureCategory.Test, ...)with the work item name, job name, and console log URI — same format and URI construction already used byCheckHelixJobStatusFailures are reported as they appear (each polling iteration), not deferred to
CheckHelixJobStatus, giving engineers real-time visibility in the timeline without waiting for the full job to complete.To double check: