Circuit breaker metrics not emitting on prometheus endpoint
See original GitHub issueSpring Boot Resilience4j version: 1.3.1 Spring Boot version : 1.5.7
Hello,
I have configured the resilience4j spring boot dependency with the Spring Boot 1.5.7 Release. I am able to see the Circuit breaker metrics on /metrics endpoint but unable to see the same metrics on /prometheus endpoint.
Dependencies being used:
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-spring-boot</artifactId>
<version>1.3.1</version>
<exclusions>
<exclusion>
<artifactId>io.github.resilience4j</artifactId>
<groupId>resilience4j-bulkhead</groupId>
</exclusion>
<exclusion>
<artifactId>io.github.resilience4j</artifactId>
<groupId>resilience4j-ratelimiter</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<version>1.5.4</version>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-spring-legacy</artifactId>
<version>1.3.14</version>
</dependency>
Please let me know for any suggestions or if you need any other info.
Issue Analytics
- State:
- Created 3 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Can't expose hystrix metrics to /actuator/prometheus after ...
The endpoint /actuator/prometheus is working, it's just that I'm not getting the hystrix metrics to show there. Accessing the endpoint ...
Read more >Getting Started - resilience4j
CircuitBreaker, Retry, RateLimiter and Bulkhead Metrics are automatically published on the Metrics endpoint. To retrieve the names of the available metrics, ...
Read more >Metrics - Steeltoe Documentation
Steeltoe supports both pull and push-based configuration for exporting metrics. The pull-based mechanism is supported by the metrics or prometheus endpoints.
Read more >Resilience4j Session-7 Monitoring CircuitBreaker Events with ...
Note: We are not going discuss details of Circuit Breaker in this session. ... Prometheus metrics endpoint on ServiceA (Tomcat).
Read more >Circuit breakers statistics - Cluster manager - Envoy Proxy
Metrics starting with prefix remaining_ are not generated by default. To track the number of resources remaining until a circuit breaker opens, set...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@dlsrb6342 : I will check that as well.
Did it help?