SpringCloud-Hystrix-Dashboard客戶端服務監控的實現方法

服務監控

  •  除瞭隔離依賴服務的調用以外,Hystrix還提供瞭準實時的調用監控(Hystrix Dashboard),Hystrix會持續地記錄所有通過Hystrix發起的請求的執行信息,並以統計報表和圖形的形式展示給用戶,包括每秒執行多少請求,多少成功,多少失敗等等。
  • Netflix通過hystrix-metrics-event-stream項目實現瞭對以上指標的監控,SpringCloud也提供瞭HystrixDashboard的整合,對監控內容轉化成可視化界面!

 監控服務測試

1. 服務監控是針對客戶端(消費者)的,所以客戶端需要做出一些配置

2. 普通消費者隻需要添加hystrix和dashboard的依賴+@EnableHystrixDashboard就可以把消費者變成一個監控中心,同時也失去瞭消費者的功能,不能再訪問註冊中心

 一、客戶端(消費者)

1. 新建消費者服務9001(復制),新增監控依賴

   <!--Hystrix-->
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-hystrix</artifactId>
      <version>1.4.7.RELEASE</version>
    </dependency>

    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
      <version>1.4.7.RELEASE</version>
    </dependency>

2. 修改配置文件

server:
 port: 9001
hystrix:
 dashboard:
  proxy-stream-allow-list: "*"

3. 為啟動類添加支持監控的註解

在這裡插入圖片描述

//Eureka和Ribbon整合以後,客戶端可以根據服務名稱直接調用,不用關心IP地址和端口號
@SpringBootApplication
@EnableHystrixDashboard
//@RibbonClient(name = "SPRINGCLOUD-PROVIDER-DEPT",configuration = MyLoaderBalanceConfig.class)  //在微服務啟動的時候加載自定義的Ribbon
public class DeptConsumer_hystrix_dashboard_9001 {
  public static void main(String[] args) {
    SpringApplication.run(DeptConsumer_hystrix_dashboard_9001.class,args);
  }
}

二、服務端(生產者)

1. 所以的服務提供者都要添加被監控的依賴和Hystrix的依賴

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

2. 為被監控的服務提供者的啟動類添加一個Bean

在這裡插入圖片描述

  @Bean
  public ServletRegistrationBean hystrixMetricsStreamServlet() {
    ServletRegistrationBean registration = new ServletRegistrationBean(new HystrixMetricsStreamServlet());
    registration.addUrlMappings("/actuator/hystrix.stream");
    return registration;
  }

三、查看

  1.  啟動Eureka集群-7001、7002
  2. 啟動服務提供者-8001,並查看Eureka集群,服務是否註冊成功
  3. 啟動服務消費者-9001
  4. 嘗試直接訪問服務提供者,不通過消費者和註冊中心,http://localhost:8001/hystrix/dept/get/2
  5. 打開服務提供者的 http://localhost:8001/actuator/hystrix.stream,查看是否在ping
  6. 打開消費者 http://localhost:9001/hystrix

在這裡插入圖片描述
在這裡插入圖片描述

疑問:9001作為一個消費者模塊,為什麼不能訪問生產者,難道這個模塊隻是用來監控的平臺?


tips:

在這裡插入圖片描述

在這裡插入圖片描述
在這裡插入圖片描述

到此這篇關於SpringCloud-Hystrix-Dashboard客戶端服務監控的文章就介紹到這瞭,更多相關SpringCloud-Hystrix-Dashboard服務監控內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: