开启turbine收集hystrix指标功能

Posted 凌幽草

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了开启turbine收集hystrix指标功能相关的知识,希望对你有一定的参考价值。

使用turbine收集hystrix指标

1、pom中引入对turbin的依赖,并增加dashboard图形界面的展示

    <dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-turbine</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

2、配置配置文件,设置需要收集指标的服务

# 配置Eureka中的serviceId列表, 表明监控哪些服务
turbine.app-config=ms-provider
# 指定聚合哪些集群, 多个使用","分割, 默认为default.
# 可使用http://.../turbine.stream?cluster={clusterConfig之一}访问
turbine.aggregator.cluster-config=default
turbine.cluster-name-expression=new String("default")
turbine.instanceUrlSuffix=manage/hystrix.stream

3、设置启动类

@SpringBootApplication
@EnableHystrixDashboard
@EnableTurbine
public class MsDashboardApplication {
    // 直接监控某服务的hystrix: http://localhost:10000/hystrix.stream

    // DashBoard: http://localhost:10000/hystrix
    // 单台监控:在界面输入 http://localhost:10000/hystrix  
    // 多台监控(通过turbine):http://localhost:10000/turbine.stream
    public static void main(String[] args) {
        SpringApplication.run(MsDashboardApplication.class, args);
    }
}

说明: @EnableTurbine开启turbine的支持、@EnableHystrixDashboard允许使用图形化的界面展示。

至此,就就完成了turbine收集指标的准备工作。

以上是关于开启turbine收集hystrix指标功能的主要内容,如果未能解决你的问题,请参考以下文章

Hystrix结合Turbine使用详述

Hystrix结合Turbine使用详述

Hystrix结合Turbine使用详述

springCloud Spring Boot mybatis分布式微服务云架构-docker-hystrix-dashboard-turbine

springCloud Spring Boot mybatis分布式微服务云架构-docker-hystrix-dashboard-turbine

Java多用户商城系统B2B2C源码-docker-hystrix-dashboard-turbine