Spring Cloud 学习系列:(九)使用 Hystrix Dashboard 可视化监控数据

一、前言

除了上一篇我们讲的 Hystrix 实现容错处理外,Hystrix 还提供了近乎实时的监控——Hystrix Dashboard 。我们可以直观的看出 Hystrix Command 的请求响应时间, 请求成功率等数据,这些监控数据对分析应用系统的状态很有用。

二、案例演示

我们在上一篇的项目 microservice-eureka-feign-hystrix 的基础上修改,重新命名为:microservice-eureka-feign-hystrix-dashboard。

1、添加 pom.xml 依赖


<dependency>
	<groupId>com.netflix.hystrixgroupId>
	<artifactId>hystrix-javanicaartifactId>
	<version>RELEASEversion>
dependency>
<dependency>
	<groupId>org.springframework.cloudgroupId>
	<artifactId>spring-cloud-netflix-hystrix-dashboardartifactId>
dependency>

<dependency>
	<groupId>org.springframework.bootgroupId>
	<artifactId>spring-boot-starter-actuatorartifactId>
dependency>

2、启动类

package com.riemann.microserviceproviderservicehi;

import com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
@EnableFeignClients
@EnableHystrixDashboard
public class MicroserviceProviderServiceFeignHystrixDashboardApplication {

	public static void main(String[] args) {
		SpringApplication.run(MicroserviceProviderServiceFeignHystrixDashboardApplication.class, args);
	}

	@Bean
	public ServletRegistrationBean hystrixMetricsStreamServlet() {
		ServletRegistrationBean registration = new ServletRegistrationBean(new HystrixMetricsStreamServlet());
		registration.addUrlMappings("/hystrix.stream");
		return registration;
	}

}

3、结果测试

启动工程后访问 http://localhost:8763/hystrix,出现如下界面:

Spring Cloud 学习系列:(九)使用 Hystrix Dashboard 可视化监控数据_第1张图片

输入要监控的服务实例URL: http://localhost:8763/hystrix.stream

Spring Cloud 学习系列:(九)使用 Hystrix Dashboard 可视化监控数据_第2张图片
进入页面发现报错

Spring Cloud 学习系列:(九)使用 Hystrix Dashboard 可视化监控数据_第3张图片

控制台日志 404 信息

Failed opening connection to http://localhost:8763/hystrix.stream : 404 : HTTP/1.1 404

Hystrix Dashboard 监控单实例节点需要通过访问实例的/actuator/hystrix.stream接口来实现,自然我们需要为服务实例(被监控服务)添加这个 endpoint,修改服务实例的配置文件,添加对 actuator 的配置

management:
  endpoints:
    web:
      exposure:
        include: hystrix.stream

此时再次重启,不好意思还是报404错误,需要在服务实例(被监控服务)主类添加代码:

@Bean
public ServletRegistrationBean hystrixMetricsStreamServlet() {
    ServletRegistrationBean registration = new ServletRegistrationBean(new HystrixMetricsStreamServlet());
    registration.addUrlMappings("/hystrix.stream");
    return registration;
}

重新启动服务实例后再次访问,页面变成了Loading,是因为需要有调用任意hysrix接口,不然没有hystrix调用,访问hystrix.stream会一直ping,hystrix监控界面就会一直loading。现在调用hi API 后:

Spring Cloud 学习系列:(九)使用 Hystrix Dashboard 可视化监控数据_第4张图片

Hystrix Dashboard Wiki上详细说明了图上每个指标的含义,如下图:

Spring Cloud 学习系列:(九)使用 Hystrix Dashboard 可视化监控数据_第5张图片
到这里,单个应用的 Hystrix Dashboard 可视化监控数据已经完成!

你可能感兴趣的:(SpringCloud)