Spring Cloud 学习笔记五:搭建微服务工程之Hystrix 的实时监控功能

目录

Hystrix 的实时监控功能


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 这个页面中输出的数据了:

请求结果

猜你喜欢

转载自blog.csdn.net/qq_27875933/article/details/114261233