1. 程式人生 > >SpringCloud-熔斷監控Hystrix Dashboard

SpringCloud-熔斷監控Hystrix Dashboard

Hystrix-dashboard是一款針對Hystrix進行實時監控的工具,通過Hystrix Dashboard我們可以在直觀地看到各Hystrix Command的請求響應時間, 請求成功率等資料。

新增如下依賴

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

啟動類加上@EnableHystrixDashboard註解

 

開啟暴露介面(這個是配置在有@HystrixCommand註解的專案裡)

#/actuator/hystrix.stream
management.endpoints.web.exposure.include=*

訪問http://localhost:8082/hystrix

輸入ip:port/actuator/hystrix.stream 上下都顯示loading 就說明連線上了

訪問被@HystrixCommand註解的方法,就能看到統計