hystrix-dashboard+turbine以及hystrix.stream数据问题

我的springcloudshe版本1.5.8.RELEASE如下:

hystrix-dashboard 是用于监控hystrix的调用情况,但是针对单个hystrix.stream监控

turbine  用于整合多个集群的hystrix.stream,通过turbine.stream对外提供整合数据,这样可以监控集群的hystrix.stream调用

http://localhost:port/hystrix.stream
http://localhost:port/turbine.stream

可以将两个hystrix-dashboard +turbine 合成一个项目节省下

1、配置监控平台

首先配置hystrix-dashboard+turbine  pom.xml

 

   
        org.springframework.boot
        spring-boot-starter-parent
        1.5.8.RELEASE
    

    com.zhou.demo
    hystrix-dashboard
    1.0.0

    
        UTF-8
        1.8
    

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                Dalston.SR4
                pom
                import
            
        
    


    
        
            org.springframework.boot
            spring-boot-starter-actuator
        
        
            org.springframework.cloud
            spring-cloud-starter-hystrix
        
        
            org.springframework.cloud
            spring-cloud-starter-hystrix-dashboard
        
        
            org.springframework.cloud
            spring-cloud-starter-turbine
        
    

启动类

 

@SpringBootApplication
@EnableDiscoveryClient
@EnableTurbine
@EnableHystrixDashboard
public class HystrixDashboardApp {
    public static void main(String[] args) {
        SpringApplication.run(HystrixDashboardApp.class, args);
    }
}

 

配置文件:appConfig 需要拉取hystrix.stream的application-name

 

clusterNameExpression 配置集群name,我配置的是默认,这一块应该和eureka配置放在一起(具体自己尝试)

还有combineHostPort默认是true,用host和post来区分不同的服务

 

turbine:
  appConfig: zuul-server,zuul-inner-server
  clusterNameExpression: new String("default")

如此搭建完成。

 

 

2、如何让应用产生hystrix.stream

 

需要actuator hystrix的相关jar包,需要@EnableCircuitBreaker相关注解

1、网关服务zuul本来就有,不用额外配置

2、使用feign调用的服务,需要打开hystris feign:hystrix:enabled: true

3、非feign的springboot项目,使用resttemple调用服务时,需要以上相关包和相关注解,还需要 @HystrixCommand来使用hystrix来支持。

4、另外需要有调用任意hysrix接口,不然没有hystrix调用,访问hystrix.stream会一直ping,hystrix监控界面一直loading,查看hystrix.stream是没数据。

监控界面监控非网关服务时, Circuit显示具体调用hystrix的类和对应方法,下面的thread pools显示具体的application-name

参数解释

hystrix-dashboard+turbine以及hystrix.stream数据问题_第1张图片

 

更完全的说明解释图如下

3、参考文章

https://mp.weixin.qq.com/s/c4PwWUJiTKdeuxdGGAC8sw  系列文章可看

https://www.jianshu.com/p/b7b20fc09ca9 系列文章,内有代码示例,版本1.5.6可以参考

 

 

 

 



 

 

 

 

你可能感兴趣的:(SpringCloud芝士,#,SpringCloud问题梳理)