You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tested locally in kind, the new metrics as reported from localhost:15020/metrics:
# HELP tokio_num_workers the number of worker threads used by the runtime
# TYPE tokio_num_workers gauge
tokio_num_workers 2
# HELP tokio_global_queue_depth the number of tasks currently scheduled in the runtime's global queue
# TYPE tokio_global_queue_depth gauge
tokio_global_queue_depth 0
# HELP tokio_num_alive_tasks the number of alive tasks in the runtime
# TYPE tokio_num_alive_tasks gauge
tokio_num_alive_tasks 4
# HELP tokio_worker_total_busy_duration_seconds the amount of time worker threads have been busy
# TYPE tokio_worker_total_busy_duration_seconds counter
tokio_worker_total_busy_duration_seconds_total{worker="0"} 0.000133915
tokio_worker_total_busy_duration_seconds_total{worker="1"} 0.002096876
# HELP tokio_worker_park_count the total number of times the given worker thread has parked
# TYPE tokio_worker_park_count counter
tokio_worker_park_count{worker="0"} 9
tokio_worker_park_count{worker="1"} 11
# HELP tokio_worker_park_unpark_count the total number of times the given worker thread has parked and unparked
# TYPE tokio_worker_park_unpark_count counter
tokio_worker_park_unpark_count{worker="0"} 17
tokio_worker_park_unpark_count{worker="1"} 21
I'm waiting for a istio member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.
Regular contributors should join the org to skip this step.
Once the patch is verified, the new status will be reflected by the ok-to-test label.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.
istio-testing
added
size/XXL
Denotes a PR that changes 1000+ lines, ignoring generated files.
and removed
size/L
Denotes a PR that changes 100-499 lines, ignoring generated files.
labels
Mar 18, 2026
make check-features failed when doing cd fuzz; RUSTFLAGS="--cfg fuzzing" cargo check since it's compiling ztunnel with tokio version 1.44.2 where the metrics worker_park_count, worker_total_busy_duration and worker_park_unpark_count weren't stabilized yet.
Ran cd fuzz && cargo update to update fuzz/Cargo.lock which fixes this.
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
ok-to-testSet this label allow normal testing to take place for a PR not submitted by an Istio org member.size/XXLDenotes a PR that changes 1000+ lines, ignoring generated files.
3 participants
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.
Self-explanatory.
Tested locally in kind, the new metrics as reported from
localhost:15020/metrics: