本文是Spring Cloud專欄的第六篇文章,瞭解前五篇文章內容有助於更好的理解本文:git
Spring Cloud第三篇 | 搭建高可用Eureka註冊中心springboot
Hystrix儀表盤( Hystrix Dashboard),就像汽車的儀表盤實時顯示汽車的各 項數據同樣, Hystrix儀表盤主要用來監控 Hystrix的實時運行狀態,經過它咱們能夠看到 HystriX的各項指標信息,從而快速發現系統中存在的問題進而解決 要使用 Hystriⅸ儀表盤功能,咱們首先須要有一個 Hystrix Dashboard,這個功能咱們能夠在原來的消費者應用上添加,讓原來的消費者應用具有Hysr儀表 盤功能,但通常地微服務架構思想是推崇服務的拆分, Hystrix Dashboard也是一個服務,因此一般會單首創建一個新的工程專門用作 Hystrix Dashboard 服務,Hystrix Dashboard所處的做用如圖負載均衡
一、新建一個模塊命名爲(springcloud-hystrix-dashboard)maven
二、添加依賴hystrix的Dashboard依賴spring-boot
<!--hystrix-dashboard功能的起步依賴,儀表盤功能-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
</dependency>複製代碼
此時依賴可能下載不下來,能夠添加阿里雲倉庫微服務
<repositories>
<repository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>複製代碼
三、在啓動類上添加註解@EnableHystrixDashboard
四、端口配置爲3721,到此咱們的hystrix監控服務就搭建完畢了,啓動訪問http://localhost:3721/hystrix
Hystrix儀表盤工程已經建立好了,咱們須要有一個服務,讓這個服務提供一個路徑爲/actuator/hystrix.stream接口,而後就可使用Hystrix儀表盤來對該服務進行監控了
五、改造消費者(springcloud-service-consumer)
咱們改造消費者服務,讓其能提供/actuator/hystrix.stream接口,步驟以下:
5-一、消費者項目須要有Hystrix的依賴,在以前案例中使用服務熔斷的時候已經加過了
5-二、須要有一個springboot的服務監控依賴,能夠直接添加到父模塊依賴中
<!--springboot提供的服務健康檢查監控的依賴-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>複製代碼
5-三、配置文件須要配置springboot監控的端點訪問權限
#用來暴露endpoints的,因爲endpoints中會包含不少敏感信息,
#除了health和info兩個支持直接訪問外,其餘的默認不能直接訪問,
#因此咱們讓他們都能訪問(*),或者指定springboot的監控端點訪問權限,
#*表示全部的端點都容許訪問,若是隻寫hystrix.stream,他會把默認的info,health端點關閉
management:
endpoints:
web:
exposure:
include: ["info","health","hystrix.stream"]複製代碼
從控制檯日誌上能夠看到
2019-08-07 15:58:31.187 INFO 7396 --- [ost-startStop-1] o.s.b.a.e.web.ServletEndpointRegistrar : Registered '/actuator/hystrix.stream' to hystrix.stream-actuator-endpoint複製代碼
六、第一次訪問,要先訪問其餘帶用熔斷器的接口,訪問入口:http://localhost:9090/actuator/hystrix.stream
注意:這裏有一個細節須要注意,要訪問/hystrix.stream接口,首先訪問消費者(springcloud-service-consumer)工程中任意的一個帶有熔斷器的接口,不然直接訪問/hystrix.stream接口時,會輸出一連串ping: ping: ....
七、把http://localhost:9090/actuator/hystrix.stream填寫到Hystrix Dashboard儀表盤上,直接在網上找了一個詳細描述圖,以下圖
詳細參考案例源碼:gitee.com/coding-farm…