diagnostics_channel: add threadpool work event - #65982
Open
IlyasShabi wants to merge 1 commit into
Open
Conversation
Collaborator
|
Review requested:
|
Signed-off-by: ishabi <ilyasshabi94@gmail.com>
IlyasShabi
force-pushed
the
ishabi/threadpool-dc
branch
from
September 11, 2026 13:19
b6fb403 to
946f372
Compare
Member
Author
|
@mcollina You mean separate channels named |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #65982 +/- ##
==========================================
+ Coverage 90.16% 90.19% +0.02%
==========================================
Files 771 771
Lines 265434 265513 +79
Branches 50450 50478 +28
==========================================
+ Hits 239332 239468 +136
+ Misses 17045 17003 -42
+ Partials 9057 9042 -15
🚀 New features to boost your workflow:
|
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.
This PR aims to add support for experimental
threadpool.workdiagnostics channel.The event exposes:
type: kind of threadpool workenqueued: submission timestampstarted: execution start timestampended: execution end timestampThese timestamps allow diagnostics tools to distinguish queue time from native execution time. Cancelled work reports
startedandendedasnull.The channel and subscriber state are cached per
Environmentso the unsubscribed path remains minimal.Benchmark
Unsubscribed configurations showed no significant regressions. Most subscribed configurations were also within noise;
zlibatn=10000measured a 3.48% regression on local machine (will share the onces from CI)