在以往的文章里,已经讲解了 断路器 Hystrix 的基本使用,现在将介绍断路器的监控 Hystrix Dashboard 的基本搭建。
Hystrix Dashboard 是 Hystrix 的仪表盘组件,提供了数据监控,可以实时监控 Hystrix 的各个指标,然后通过图形化界面展示出来。
org.springframework.cloud
spring-cloud-starter-netflix-hystrix
org.springframework.cloud
spring-cloud-starter-netflix-hystrix-dashboard
org.springframework.boot
spring-boot-starter-actuator
@SpringBootApplication
@EnableHystrixDashboard
public class HystrixDashboardApplication {
public static void main(String[] args) {
SpringApplication.run(HystrixDashboardApplication.class, args);
}
}
配置文件:
server:
port: 8580
spring:
application:
name: spring-cloud-hystrix-dashboard
org.springframework.boot
spring-boot-starter-actuator
@SpringBootApplication
@EnableEurekaClient
@EnableCircuitBreaker
@EnableHystrix
public class ServiceRibbonApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceRibbonApplication.class, args);
}
@Bean
@LoadBalanced
RestTemplate restTemplate() {
return new RestTemplate();
}
@Bean
public IRule ribbonRule() {
return new RandomRule(); //这里配置策略,和配置文件对应
}
}
在配置文件中添加:
management:
endpoints:
web:
exposure:
include: '*'
endpoint:
health:
show-details: ALWAYS
这个是用来暴露 Actuator 的所有端点的,这一点很重要,不配置你的 Hystrix Dashboard 会出现 Unable to connect to Command Metric Stream 的问题(这是个坑)
依次启动 eureka server、spring-demo-service、spring-demo-service-ribbon、spring-cloud-hystrix-dashboard,访问 http://localhost:8580/hystrix,界面如下:
Cluster via Turbine (default cluster): http://turbine-hostname:port/turbine.stream
Cluster via Turbine (custom cluster): http://turbine-hostname:port/turbine.stream?cluster=[clusterName]
Single Hystrix App: http://hystrix-app:port/hystrix.stream
这个是说明不同情况下不同的请求地址,前两个是对于集群模式使用的,最后一个是单节点模式使用的,此篇配置的是单节点模式,所以在页面的地址栏输入 http://localhost:8381/actuator/hystrix.stream
点击 Monitor Stream,页面跳转显示如下:
注:有可能你进来后页面显示的是 Loading... 状态,这个是因为你的服务没有被消费调用,所以此时没有数据监控,只要调用下被监控的服务,就会出现上图状态了。
对 spring-demo-service-feign 服务的监控的配置,和以上配置类似,以下简单说明
org.springframework.boot
spring-boot-starter-actuator
@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
@EnableCircuitBreaker
@EnableHystrix
public class ServiceFeignApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceFeignApplication.class, args);
}
}
management:
endpoints:
web:
exposure:
include: '*'
endpoint:
health:
show-details: ALWAYS
依次启动 eureka server、spring-demo-service、spring-demo-service-feign、spring-cloud-hystrix-dashboard,访问 http://localhost:8580/hystrix,界面和上面一样
输入 http://localhost:8382/actuator/hystrix.stream,点击 Monitor Stream,如下:
实心圆:颜色代表健康度,(绿-黄-红-橙递减);大小代表并发量。
曲线:请求量的变化
如果出现 Loading... 状态,就先消费调用下被监控的服务即可。