Spring Cloud架構教程 (一)Hystrix監控面板

下面我們基於之前的示例來結合Hystrix Dashboard實現Hystrix指標數據的可視化面板,這裡我們將用到下之前實現的幾個應用,包括:

  • eureka-server:服務註冊中心
  • eureka-client:服務提供者
  • eureka-consumer-ribbon-hystrix:使用ribbon和hystrix實現的服務消費者

由於eureka-consumer-ribbon-hystrix項目中的/consumer介面實現使用了@HystrixCommand修飾,所以這個介面的調用情況會被Hystrix記錄下來,以用來給斷路器和Hystrix Dashboard使用。斷路器我們在上一篇中已經介紹過了,下面我們來具體說說Hystrix Dashboard的構建。

動手試一試

在Spring Cloud中構建一個Hystrix Dashboard非常簡單,只需要下面四步:

  • 創建一個標準的Spring Boot工程,命名為:hystrix-dashboard。
  • 編輯pom.xml,具體依賴內容如下:

<parent> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-parent</artifactId> <version>Dalston.SR1</version> <relativePath /></parent><dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</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-actuator</artifactId> </dependency></dependencies>

為應用主類加上@EnableHystrixDashboard,啟用Hystrix Dashboard功能。

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

根據實際情況修改application.properties配置文件,比如:選擇一個未被佔用的埠等,此步非必須。

spring.application.name=hystrix-dashboardserver.port=1301

到這裡我們已經完成了基本配置,接下來我們可以啟動該應用,並訪問:http://localhost:1301/hystrix,我們可以看到如下頁面:

這是Hystrix Dashboard的監控首頁,該頁面中並沒有具體的監控信息。從頁面的文字內容中我們可以知道,Hystrix Dashboard共支持三種不同的監控方式,依次為:

  • 默認的集群監控:通過URLturbine-hostname:port/turbine.stream開啟,實現對默認集群的監控。
  • 指定的集群監控:通過URLturbine-hostname:port/turbine.stream?cluster=[clusterName]開啟,實現對clusterName集群的監控。
  • 單體應用的監控:通過URLhystrix-app:port/hystrix.stream開啟,實現對具體某個服務實例的監控。

前兩者都對集群的監控,需要整合Turbine才能實現,這部分內容我們將在下一篇中做詳細介紹。在本節中,我們主要實現對單個服務實例的監控,所以這裡我們先來實現單個服務實例的監控。

既然Hystrix Dashboard監控單實例節點需要通過訪問實例的/hystrix.stream介面來實現,自然我們需要為服務實例添加這個端點,而添加該功能的步驟也同樣簡單,只需要下面兩步:

在服務實例pom.xml中的dependencies節點中新增spring-boot-starter-actuator監控模塊以開啟監控相關的端點,並確保已經引入斷路器的依賴spring-cloud-starter-hystrix:

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

  • 確保在服務實例的主類中已經使用@EnableCircuitBreaker或@EnableHystrix註解,開啟了斷路器功能。

到這裡已經完成了所有的配置,我們可以在Hystrix Dashboard的首頁輸入http://localhost:2101/hystrix.stream,已啟動對「eureka-consumer-ribbon-hystrix」的監控,點擊「Monitor Stream」按鈕,此時我們可以看到如下頁面:

在對該頁面介紹前,我們先看看在首頁中我們還沒有介紹的兩外兩個參數:

  • Delay:該參數用來控制伺服器上輪詢監控信息的延遲時間,默認為2000毫秒,我們可以通過配置該屬性來降低客戶端的網路和CPU消耗。
  • Title:該參數對應了上圖頭部標題Hystrix Stream之後的內容,默認會使用具體監控實例的URL,我們可以通過配置該信息來展示更合適的標題。源碼來源

推薦閱讀:

Github上有沒有關於springmvc框架的項目?
springcloud: 配置中心svn示例和refresh
Spring Security源碼分析五:Spring Security實現簡訊登錄
Spring Cloud構建微服務架構:服務網關(過濾器)【Dalston版】
Spring Boot 1.5.x新特性:動態修改日誌級別

TAG:Spring | SpringCloud | SpringBoot |