-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VertxPoolMetrics should count rejected requests #35540
Labels
Milestone
Comments
/cc @ebullient (metrics), @jmartisk (metrics) |
ahus1
added a commit
to ahus1/quarkus
that referenced
this issue
Aug 24, 2023
This was referenced Aug 24, 2023
Created a PR: #35541 |
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 26, 2023
Closes quarkusio#35540 (cherry picked from commit ff67f70)
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 26, 2023
Closes quarkusio#35540 (cherry picked from commit ff67f70)
aloubyansky
pushed a commit
to aloubyansky/quarkus
that referenced
this issue
Oct 31, 2023
Closes quarkusio#35540 (cherry picked from commit ff67f70)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
The
VertxPoolMetrics
currently expose metrics aboutworker_pool_completed_total
, but no counter about rejected submissions to the worker pool.As discussed in #34998 the
ExecutorService
can be configured with a maximum queue length as a simple mean to load shedding. In those situations it is helpful to have a metric about rejected submissions.Implementation ideas
Add a new counter
rejected
toVertxPoolMetrics
. I'll prepare a PR for this.The text was updated successfully, but these errors were encountered: