Circuit breaker status to health on actutor endpoint
See original GitHub issueResilience4j version: 1.2.0
Java version: 1.8
Problem description: I’m not getting the status of resilience4j in my /actuator/health endpoint.
Following libs that I’m using:
<resilience4jVersion>1.2.0</resilience4jVersion>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-spring-boot2</artifactId>
<version>${resilience4jVersion}</version>
</dependency>
Thanks
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
spring boot actuator health endpoint + dynamic resilience4j ...
Now I would like to make the circuit breakers' information available in the /actuator/health endpoint, but I'm not seeing the details.
Read more >Getting Started - resilience4j
Spring Boot Actuator health information can be used to check the status of your running application. It is often used by monitoring software...
Read more >Production-ready Features - Spring
You can use health information to check the status of your running application. It is often used by monitoring software to alert someone...
Read more >Resilience4j Circuit Breaker with Spring Boot - Dev Genius
After configuring the circuit breaker, we can check the health from browser by entering the url <Host>/actuator/health.
Read more >spring boot actuator health endpoint + dynamic resilience4j ...
Coding example for the question spring boot actuator health endpoint + dynamic resilience4j circuit breakers-Springboot.
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
Hi,
https://resilience4j.readme.io/docs/getting-started-3#section-health-endpoint
By default the CircuitBreaker or RateLimiter health indicators are disabled, but you can enable them via the configuration.
ignore, I figured it out
http://localhost:9080/actuator/health
my bad.