hystrix-dashborad监控仪表盘简单配置

Posted myprbb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hystrix-dashborad监控仪表盘简单配置相关的知识,希望对你有一定的参考价值。

需要被监控的微服务工程pom依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
yml中
management.endpoints.web.exposure.include: hystrix.stream
监控工程pom依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
</dependency>
yml中配置
服务端口号
server.port
微服务名称
spring.application.name
启动类上使用注解 启用Hystrix监控仪表盘功能

技术图片


@EnableHystrixDashboard

通过监控工程端口号+/hystrix
http://localhost:xxxx/hystrix访问hystrix网站
红色箭头所指位置写入被监控的微服务地址
http://localhost:xxxx/hystrix.system

技术图片


注:如要查看监控数据本身(json)
直接访问http://localhost:xxxx/hystrix.system
xxxx:具体微服务端口
如果此微服务启动开始后方法没有被访问过,那么显示的数据只有Ping,必须访问带有熔断的方法才会有实际数据

以上是关于hystrix-dashborad监控仪表盘简单配置的主要内容,如果未能解决你的问题,请参考以下文章

Kafka监控工具kafka-monitor v0.1简要介绍

Spring cloud微服务安全实战-7-7自定义metrics监控指标

kafka管理界面 kafka-eagle

Qt编写云台仪表盘控件

Docker监控快速部署,cAdvisor+InfluxDB+Grafana

hystrix dashboard 断路器仪表盘