我有一个 Spring Boot 应用程序,它使用基于Resilience4j AOP 的@CircuitBreaker
s。
现在我想在/actuator/health
端点中提供断路器的信息,但我没有在 JSON 输出中看到文档中描述details.circuitBtreakers
的对象。
我究竟做错了什么?
相比之下,让动态缓存信息出现在/actuator/metrics
端点中需要少量的自定义连接,但这是有据可查的。我想知道是否有类似的技巧可以申请动态定义@CircuitBreaker
的 s 向/actuator/health
端点注册。
MyService.java
:
@Service
public class MyService {
@Autowired
private CacheManager cacheManager;
@Autowired
private CacheMetricsRegistrar cacheMetricsRegistrar;
@PostConstruct
public void postConstruct() {
// On-the-fly defined (annotation-based) caches are not auto-registered with micrometer metrics.
final Cache cache = cacheManager.getCache("myCache");
cacheMetricsRegistrar.bindCacheToRegistry(cache);
}
@CircuitBreaker(name = "myCB", fallbackMethod = "fallbackCallAnApi")
public String callAnApi() throws RestClientException {
// ...
}
@Cacheable("myCache")
public String getSomethingCacheable() {
// ...
}
}
application.properties
:
resilience4j.circuitbreaker.configs.default.registerHealthIndicator=true
management.endpoints.web.expose=health,metrics
management.endpoints.web.exposure.include=health,metrics
management.endpoint.health.enabled=true
management.endpoint.metrics.enabled=true
management.metrics.enable.resilience4j.circuitbreaker.calls=true
management.health.circuitbreakers.enabled=true