hosted-runner page in org is buggy #174125
Replies: 5 comments 3 replies
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
textThe GitHub-hosted runners metrics page (Organization settings → Actions → Runners → Metrics & Insights) currently has a few noticeable bugs:
This makes it impossible to accurately monitor current consumption or plan for larger runners. Attached is a screenshot demonstrating the issue (0 usage shown despite full consumption). Has anyone else encountered this? Is this a known issue, and is there an estimated time for a fix or a workaround to view accurate metrics in the meantime? Thanks! |
Beta Was this translation helpful? Give feedback.
-
|
You are absolutely right this is a known issue with that specific settings view! Both of the bugs you are seeing are due to how that legacy UI component pulls and displays data. Here is what's happening under the hood: The 20/20 vs 0/0/0 metric discrepancy: The overall "All jobs usage" counter updates almost instantly when your organization hits its concurrency limit (which is 20 for your current plan). However, the telemetry that feeds the specific OS breakdown (Linux/Windows/macOS) is often delayed or fails to sync properly during periods of high job churn. It's a UI reporting lag, not an actual runner allocation failure. The outdated labels: The runner labels shown on this specific settings page are essentially hardcoded static text. GitHub hasn't updated this specific view to reflect recent runner deprecations (like macos-11 and windows-2019) or the rollout of newer standard images. The Workaround: Check the Insights -> Actions tab at the organization level for better metric reporting. Use the GitHub CLI (gh run list) or the Actions REST API to see exactly which workflows are currently in an in_progress state across your repositories. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Bug
What GitHub Actions topic or product is this about?
Metrics & Insights
Discussion Details
The hosted-runner page under the org settings is pretty buggy.
Beta Was this translation helpful? Give feedback.
All reactions