SpringCloud Hystrix指标流
2023-11-22 11:51 更新
要启用Hystrix指标流,请包括对spring-boot-starter-actuator
的依赖性并设置management.endpoints.web.exposure.include: hystrix.stream
。这样做将/actuator/hystrix.stream
作为管理端点公开,如以下示例所示:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
以上内容是否对您有帮助:
更多建议: