码迷,mamicode.com
首页 > 编程语言 > 详细

28 Spring Cloud Hystrix的实时监控功能

时间:2021-02-08 12:32:25      阅读:0      评论:0      收藏:0      [点我收藏+]

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

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

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

1)必须有 Actuator 的依赖

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

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

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>

我们改造下 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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!