Conversation
solnic
added this pull request to stack #1214
September 16, 2026 13:34
solnic
marked this pull request as draft
September 16, 2026 13:37
solnic
force-pushed
the
feat/runtime-metrics-run-queue
branch
from
September 16, 2026 13:55
45d08f3 to
6d71a4b
Compare
solnic
force-pushed
the
feat/runtime-metrics-run-queue
branch
from
September 16, 2026 14:05
6d71a4b to
cb35268
Compare
solnic
force-pushed
the
feat/runtime-metrics-run-queue
branch
from
September 17, 2026 09:50
cb35268 to
22a280e
Compare
solnic
force-pushed
the
feat/runtime-metrics-run-queue
branch
2 times, most recently
from
September 17, 2026 10:23
548d481 to
ac165d7
Compare
solnic
force-pushed
the
feat/runtime-metrics-run-queue
branch
2 times, most recently
from
September 17, 2026 11:54
ff3e451 to
c30afd8
Compare
solnic
force-pushed
the
feat/runtime-metrics-run-queue
branch
from
September 17, 2026 13:14
c30afd8 to
806a64f
Compare
solnic
marked this pull request as ready for review
September 17, 2026 13:15
solnic
force-pushed
the
feat/runtime-metrics-run-queue
branch
from
September 18, 2026 07:16
806a64f to
bf7bbfc
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.
Adds run queue depth, reported as gauges:
elixir.runtime.run_queue.total- all schedulerselixir.runtime.run_queue.cpu- CPU schedulerselixir.runtime.run_queue.io- I/O schedulersThese count how many processes are waiting to run. A run queue that stays above zero means work is arriving faster than the schedulers can drain it, so it is the first thing to look at when latency climbs without CPU being saturated.
All three come straight out of the
[:vm, :total_run_queue_lengths]measurement map that telemetry_poller already emits.