') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Temporarily disable Helix Job Monitor by garath · Pull Request #132847 · dotnet/runtime · GitHub
Skip to content

Temporarily disable Helix Job Monitor - #132847

Merged
mmitche merged 1 commit into
dotnet:mainfrom
garath:disable-helix-job-monitor
Aug 27, 2026
Merged

Temporarily disable Helix Job Monitor#132847
mmitche merged 1 commit into
dotnet:mainfrom
garath:disable-helix-job-monitor

Conversation

@garath

Copy link
Copy Markdown
Member

Temporarily disabling JobMonitor to reduce ADO load.

Tracking: dnceng/internal#12380

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Copilot-Session: f29085ff-a2c0-45a2-85df-c2fe864a9614
@azure-pipelines

Copy link
Copy Markdown
Azure Pipelines:
Successfully started running 6 pipeline(s).
10 pipeline(s) were filtered out due to trigger conditions.
There may be pipelines that require an authorized user to comment /azp run to run.

@dotnet-policy-service

Copy link
Copy Markdown
Contributor

Tagging subscribers to this area: @dotnet/runtime-infrastructure
See info in area-owners.md if you want to be subscribed.

@garath
garath marked this pull request as ready for review August 27, 2026 18:45
@garath
garath requested review from mmitche and a lite review from CopilotAugust 27, 2026 18:45
@azure-pipelines

Copy link
Copy Markdown
Azure Pipelines:
Successfully started running 6 pipeline(s).
10 pipeline(s) were filtered out due to trigger conditions.
There may be pipelines that require an authorized user to comment /azp run to run.

@mmitche
mmitche merged commit 019fc3f into dotnet:mainAug 27, 2026
15 of 49 checks passed

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR flips enableHelixJobMonitor from true to false across a broad set of Azure Pipelines definitions under eng/pipelines/, with the stated intent of temporarily disabling Helix Job Monitor to reduce Azure DevOps load.

Changes:

  • Set enableHelixJobMonitor to false in multiple runtime, coreclr, libraries, and extra-platform pipeline YAMLs.
  • Align Helix-monitor usage flags in job templates that consume useHelixMonitor: ${{ variables.enableHelixJobMonitor }}.

Reviewed changes

Copilot reviewed 44 out of 44 changed files in this pull request and generated 3 comments.

Show a summary per file
FileDescription
eng/pipelines/runtimelab.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-wasm.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-wasm-optional.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-wasm-non-libtests.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-wasm-libtests.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-wasm-dbgtests.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-sanitized.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-maccatalyst.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-llvm.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-ioslikesimulator.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-ioslike.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-extra-platforms.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-cet.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-androidemulator.ymlSet enableHelixJobMonitor to false.
eng/pipelines/runtime-android.ymlSet enableHelixJobMonitor to false.
eng/pipelines/libraries/outerloop.ymlSet enableHelixJobMonitor to false.
eng/pipelines/libraries/outerloop-mono.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/tieringtest.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/runtime-nativeaot-outerloop.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/runincontext.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/release-tests.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/r2r.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/r2r-extra.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/libraries-pgo.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/libraries-jitstressregs.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/libraries-jitstress2-jitstressregs.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/libraries-jitstress.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/libraries-jitstress-random.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/libraries-interpreter.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/libraries-gcstress0x3-gcstress0xc.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/libraries-gcstress-extra.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/interpreter.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/hardware-intrinsics.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/hardware-intrinsics-arm64.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/gcstress0x3-gcstress0xc.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/gcstress-extra.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/gc-standalone.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/gc-simulator.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/gc-longrunning.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/crossgen2.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/crossgen2-outerloop.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/crossgen2-gcstress.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/crossgen2-composite.ymlSet enableHelixJobMonitor to false.
eng/pipelines/coreclr/ci.ymlSet enableHelixJobMonitor to false.

Comment on lines 40 to 44
variables:
- template: /eng/pipelines/common/variables.yml
- name: enableHelixJobMonitor
value: true
value: false
- template: /eng/pipelines/helix-platforms.yml
Comment on lines 7 to +10
variables:
- template: /eng/pipelines/common/variables.yml
- name: enableHelixJobMonitor
value: true
value: false
Comment on lines 32 to 36
variables:
- template: /eng/pipelines/common/variables.yml
- name: enableHelixJobMonitor
value: true
value: false
- template: /eng/pipelines/helix-platforms.yml
@premun

Copy link
Copy Markdown
Member

/backport to release/11.0

@github-actions

Copy link
Copy Markdown
Contributor

Started backporting to release/11.0 (link to workflow run)

akoeplinger pushed a commit that referenced this pull request Aug 28, 2026
Backport of #132847 to release/11.0
/cc @premun@garath
## Customer Impact
- [ ] Customer reported
- [ ] Found internally
[Select one or both of the boxes. Describe how this issue impacts
customers, citing the expected and actual behaviors and scope of the
issue. If customer-reported, provide the issue number.]
## Regression
- [ ] Yes
- [ ] No
[If yes, specify when the regression was introduced. Provide the PR or
commit if known.]
## Testing
[How was the fix verified? How was the issue missed previously? What
tests were added?]
## Risk
[High/Medium/Low. Justify the indication by mentioning how risks were
measured and addressed.]
**IMPORTANT**: If this backport is for a servicing release, please
verify that:
- For .NET 8 and .NET 9: The PR target branch is `release/X.0-staging`,
not `release/X.0`.
- For .NET 10+: The PR target branch is `release/X.0` (no `-staging`
suffix).
## Package authoring no longer needed in .NET 9
**IMPORTANT**: Starting with .NET 9, you no longer need to edit a NuGet
package's csproj to enable building and bump the version.
Keep in mind that we still need package authoring in .NET 8 and older
versions.
Co-authored-by: Michael Stuckey <michael.stuckey@gmail.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Copilot-Session: f29085ff-a2c0-45a2-85df-c2fe864a9614
mmitche added a commit that referenced this pull request Aug 28, 2026
Updates Microsoft.DotNet.Helix.JobMonitor to the fixed
`11.0.0-beta.26427.10` build and refreshes the dependency metadata.
Also restores the monitor settings temporarily disabled by #132806 and
#132847.
Published by:
https://dev.azure.com/dnceng/internal/_build/results?buildId=3059358
Copilot-Session: 8b8f5df4-d7f7-4953-93af-59c1932e3607
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

4 participants

@garath@premun@mmitche