Spring Cloud 之Hystrix Dashboard

Spring Cloud 之Hystrix Dashboard,第1张

Spring Cloud 之Hystrix Dashboard

文章目录
  • 前言
  • 一、理论部分
    • 1、HystrixDashboard
    • 2、监控方式
    • 3、监控面板信息介绍
    • 4、Turbine
  • 二、实践部分
    • 1、hystrix-dashboard使用
      • 1、创建一个hystrix-dashboard模块
      • 2、添加相关依赖包
      • 3、在application.properties文件中配置
      • 4、在启动类上添加注解
      • 5、启动服务
      • 6、项目搭建异常及解决过程记录
    • 2、Hystrix 集群实例监控
      • 1、创建一个turbine-service模块
      • 2、添加相关依赖包
      • 3、在配置文件中配置相关信息
      • 4、在启动类上添加注解
      • 5、启动服务,监控集群
  • 总结


前言

Hystrix Dashboard 是Spring Cloud中查看Hystrix实例执行情况的一种仪表盘组件,支持查看单个实例和查看集群实例,本文将对其用法进行学习。

一、理论部分 1、HystrixDashboard

使用:

  1. 添加依赖包

   org.springframework.cloud
     spring-cloud-starter-netflix-hystrix-dashboard
     RELEASE
 

在启动类上添加@EnableHystrixDashboard注解启动仪表盘功能。

2、监控方式

有三种不同的监控方式

  • 单体Hystrix消费者

通过http://hystrix-app:port/hystrix.stream开启,实现对具体某个服务实例的监控

  • 默认集群监控

通过 http://turbine-hostname:port/turbine.stream开启,实现对默认集群的监控

  • 自定集群监控

http://turbine-hostname:port/turbine.stream?cluster=[clusterName] ,实现对clusterName集群的监控

3、监控面板信息介绍

4、Turbine

Turbine 是聚合服务器发送事件流数据的一个工具,hystrix 的监控中,只能监控单个节点,实际生产中都为集群,因此可以通过 turbine 来监控集群服务。

使用:

  1. 添加依赖包

   org.springframework.cloud
   spring-cloud-starter-netflix-turbine
   RELEASE

在启动类上添加@EnableTurbine注解,启用Turbine服务。

二、实践部分 1、hystrix-dashboard使用 1、创建一个hystrix-dashboard模块 2、添加相关依赖包


    
        eureka
        com.hjl
        1.0-SNAPSHOT
    
    4.0.0

    hystrix-dashboard-service

    

        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        

        
            org.springframework.cloud
            spring-cloud-starter-netflix-hystrix
            RELEASE
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-hystrix-dashboard
            RELEASE
        
        
            org.springframework.boot
            spring-boot-starter-actuator
        

    



3、在application.properties文件中配置
server.port=1011

spring.application.name=hystrix-dashboard-service

eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

eureka.client.service-url.defaultZone=http://root:root@localhost:1001/eureka,http://root:root@localhost:1010/eureka
4、在启动类上添加注解

@EnableHystrixDashboard注解启动hystrix dashboard监控功能

package com.hjl.hystrix_dashboard;

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.hystrix.dashboard.EnableHystrixDashboard;
import org.springframework.context.annotation.Bean;


@EnableHystrixDashboard
@EnableDiscoveryClient
@SpringBootApplication
public class HystrixDashboardApplication {

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

    @Bean
    public ServletRegistrationBean hystrixMetricsStreamServlet() {
        ServletRegistrationBean registrationBean = new ServletRegistrationBean(new HystrixMetricsStreamServlet());
        registrationBean.addUrlMappings("/actuator/hystrix.stream");//访问该页面就是监控页面
        return registrationBean;
    }

}
5、启动服务

在服务注册中心查看

表明服务已经成功注册。
开始访问端口:http://localhost:1011/hystrix:

按照提示填写监控的服务地址:http://localhost:1008/actuator/hystrix.stream,然后点击Monitor Streams按钮,进入监控页面:


注:
被监控的hystrix-service服务需要开启Actuator的hystrix.stream端点,配置信息如下:

#暴露hystrix监控端点
management.endpoints.web.exposure.include=hystrix.stream
6、项目搭建异常及解决过程记录
  1. hystrix-dashboard依赖包的版本不匹配会导致访问dashboard页面时报404错误。

如:


    org.springframework.cloud
    spring-cloud-starter-netflix-hystrix-dashboard
    2.1.2.RELEASE

修改为:


   org.springframework.cloud
    spring-cloud-starter-netflix-hystrix-dashboard
    RELEASE
 

避免版本错误。

  1. 启用 Hystrix 仪表盘功能出现Unable to connect to Command Metric Stream.的异常。

控制台信息:

http://localhost:1008/actuator/hystrix.stream is not in the allowed list of proxy host names.  If it should be allowed add it to 
hystrix.dashboard.proxyStreamAllowList.

解决方法:
在配置文件中添加配置:

hystrix.dashboard.proxy-stream-allow-list=localhost

将需要监控的服务的地址填写仅dashboard代理许可列表中。

2、Hystrix 集群实例监控 1、创建一个turbine-service模块 2、添加相关依赖包


    
        eureka
        com.hjl
        1.0-SNAPSHOT
    
    4.0.0

    turbine-service


    
        
            org.springframework.boot
            spring-boot-starter-actuator
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-turbine
            RELEASE
        

    

3、在配置文件中配置相关信息
server.port=1012

spring.application.name=turbine-service

eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

eureka.client.service-url.defaultZone=http://root:root@localhost:1001/eureka,http://root:root@localhost:1010/eureka

# 指定需要收集信息的服务名称
turbine.app-config=hystrix-service
# 指定服务所属集群
turbine.cluster-name-expression=new String('default')
# 以主机名和端口号区分服务
turbine.combine-host-port=true
4、在启动类上添加注解

通过@EnableTurbine注解启动Turbine的集群监控功能。

package com.hjl.turbine;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.turbine.EnableTurbine;


@EnableTurbine
@EnableDiscoveryClient
@SpringBootApplication
public class TurbineServiceApplication {

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

}
5、启动服务,监控集群

对测试监控的的hystrix-service服务集群,再启动一个端口服务。
此时服务注册中心的服务列表如下:

访问Hystrix Dashboard:http://localhost:1011/hystrix,填写集群监控的地址:

总结

Hystrix提供了Hystrix Dashboard来实时监控HystrixCommand方法的执行情况。 Hystrix Dashboard可以有效地反映出每个Hystrix实例的运行情况,帮助我们快速发现系统中的问题,从而采取对应措施。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5695747.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存