28 Spring Cloud Hystrix的实时监控功能

2021-03-03 22:26

阅读:581

标签:cheng   tor   inf   csharp   出现   and   cti   enc   nbsp   

在微服务架构中,Hystrix 除了实现容错外,还提供了实时监控功能。在服务调用时,Hystrix 会实时累积关于 HystrixCommand 的执行信息,比如每秒的请求数、成功数等。

Hystrix 监控需要两个必备条件:

1)必须有 Actuator 的依赖

org.springframework.bootspring-boot-starter-actuator

2)必须有 Hystrix 的依赖,Spring Cloud 中必须在启动类中添加 @EnableHystrix 开启 Hystrix

org.springframework.cloudspring-cloud-starter-netflix-hystrix

我们改造下 hystrix-feign-demo 这个项目,加入上边两段代码的依赖,将 actuator 中的端点暴露出来,访问端点地址(http://localhost:8086/actuator/hystrix.stream)  

技术图片

 

 从图中可以看到一直在输出“ping:”,出现这种情况是因为还没有数据,等到 HystrixCommand 执行了之后就可以看到具体数据了。

调用一下 /callHello 接口 http://localhost:8086/callHello,访问之后就可以看到 http://localhost:8086/actuator/hystrix.stream 这个页面中输出的数据了

技术图片

28 Spring Cloud Hystrix的实时监控功能

标签:cheng   tor   inf   csharp   出现   and   cti   enc   nbsp   

原文地址:https://www.cnblogs.com/jrkl/p/14385979.html


评论


亲,登录后才可以留言!