spring cloud: Hystrix(三):健康指数 health Indicator

ribbon+hystrix

当使用Hystrix时(spring-cloud-starter-hystrix),项目是可以通过,/health.stream查看相关项目的健康指数的。

这里的/health.stream 访问(路径)地址,所展示的其实是Hystrix的监控内容.

/health.stream是需要以下插件支持的:

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

  

spring cloud: Hystrix(三):健康指数 health Indicator

spring cloud: Hystrix(三):健康指数 health Indicator

 

相关文章:

  • 2021-10-11
  • 2021-10-28
  • 2021-07-19
  • 2022-12-23
  • 2021-12-30
  • 2021-11-30
  • 2021-06-04
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-12-24
  • 2021-12-13
  • 2021-11-14
  • 2021-03-27
相关资源
相似解决方案