Determine concurrency count for Resilience4j bulkhead

58 Views Asked by At

I'd like to track the concurrency levels of my bulkhead in an application for monitoring purposes.

Is the concurrency count for a Resiliency4j bulkhead externally available?

I can keep tack of it myself with the onCallPermitted and onCallFinished event callbacks, but I would rather not have to keep track of that if it is already available.

1

There are 1 best solutions below

0
On BEST ANSWER

Bulkhead.getMetrics does the trick.