Spring Cloud 学习笔记五:搭建微服务工程之Hystrix 的实时监控功能
目录Hystrix 的实时监控功能Hystrix 的实时监控功能在微服务架构中,Hystrix 除了实现容错外,还提供了实时监控功能。在服务调用时,Hystrix 会实时累积关于 HystrixCommand 的执行信息,比如每秒的请求数、成功数等。更多的指标信息请查看官方文档:https://github.com/Netflix/Hystrix/wiki/Metrics-and-Monitori
目录
Hystrix 的实时监控功能
在微服务架构中,Hystrix 除了实现容错外,还提供了实时监控功能。在服务调用时,Hystrix 会实时累积关于 HystrixCommand
的执行信息,比如每秒的请求数、成功数等。
更多的指标信息请查看官方文档:https://github.com/Netflix/Hystrix/wiki/Metrics-and-Monitoring。
Hystrix 监控需要两个必备条件:
必须有 Actuator 的依赖,代码如下所示:
<!-- spring actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
必须有 Hystrix 的依赖,Spring Cloud 中必须在启动类中添加 @EnableHystrix
开启 Hystrix,代码如下所示:
<!-- hystrix -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
加入依赖后,将 actuator 中的端点暴露出来,访问端点地址(http://localhost:8091/actuator/hystrix.stream):
management:
endpoints:
web:
exposure:
include: hystrix.stream
第一次看到一直在输出 ping:
,出现这种情况是因为还没有数据,等到 HystrixCommand
执行了之后就可以看到具体数据了。
调用一下 /user/query/1
接口 http://localhost:8091/user/query/1,访问之后就可以看到 http://localhost:8091/actuator/hystrix.stream 这个页面中输出的数据了:
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)