Spring-boot application exposing the metrics, resilience4j_timelimiter_calls_total
, seems to be counter, which is giving me the total timeouts happened till the current time.`
I have used sum by (service, name) (rate(resilience4j_timelimiter_calls_total{service="service-name"}[5m]))
to find the number of timeouts happening over 5m.
I want to find total number of failures of the downstream API in say x time-period, including both timeouts and 4xx/5xx exceptions, meaning the number of times the resilience4j circuit breaker directed the call to fallback method.
Is there a promethues exposed resilience metrics to find this ?