中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微服務熔斷限流Hystrix之流聚合

發布時間:2020-08-11 08:43:21 來源:網絡 閱讀:450 作者:程序員果果 欄目:編程語言

簡介

上一篇介紹了 Hystrix Dashboard 監控單體應用的例子,在生產環境中,監控的應用往往是一個集群,我們需要將每個實例的監控信息聚合起來分析,這就用到了 Turbine 工具。Turbine有一個重要的功能就是匯聚監控信息,并將匯聚到的監控信息提供給Hystrix Dashboard來集中展示和監控。

流程

微服務熔斷限流Hystrix之流聚合

實驗

工程說明

工程名 端口 作用
eureka-server 8761 注冊中心
service-hi 8762 服務提供者
service-consumer 8763 服務消費者
service-turbine 8765 Turbine服務

核心代碼

eureka-server 、service-hi、service-consumer 工程代碼與上一節 微服務熔斷限流Hystrix之Dashboard 相同,下面是 service-turbine 工程的核心代碼。

pom.xml
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-turbine</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
</dependency>
application.yml
server:
  port: 8765

spring:
  application:
    name: service-turbine
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka/

turbine:
  app-config: service-consumer
  cluster-name-expression: new String("default")
  combine-host-port: true

參數說明:

  • turbine.app-config:指定要監控的應用名
  • turbine.cluster-name-expression:指定集群的名字
  • turbine.combine-host-port:表示同一主機上的服務通過host和port的組合來進行區分,默認情況下是使用host來區分,這樣會使本地調試有問題
啟動類
@SpringBootApplication
@EnableEurekaClient
@EnableHystrixDashboard
@EnableTurbine
public class ServiceTurbineApplication {

    public static void main(String[] args) {
        SpringApplication.run( ServiceTurbineApplication.class, args );
    }

}

模擬多實例

啟動多個 service-consumer 工程,來模擬多實例,可以通過命令java -jar service-consumer.jar --server.port=XXXX 來實現。

為了方便,在編輯器中實現啟動工程。但 idea 不支持單個應用的多次啟動, 需要開啟并行啟動:

選擇 “Edit Configurations...”

微服務熔斷限流Hystrix之流聚合

勾選 “Allow running in parallel”

微服務熔斷限流Hystrix之流聚合

測試

啟動工程,訪問 http//localhost:8763/hi , http//localhost:8764/hi , http//localhost:8763/oh , http//localhost:8764/oh,來產生測試數據。

訪問 http://localhost:8765/hystrix ,

微服務熔斷限流Hystrix之流聚合

輸入監控流地址 http://localhost:8765/turbine.stream ,點擊 Monitor Stream 進入監控頁面

微服務熔斷限流Hystrix之流聚合

可以看到聚合了兩個實例的 Hystrix dashbord 數據。

源碼

https://github.com/gf-huanchupk/SpringCloudLearning/tree/master/chapter18

歡迎關注我的公眾號《程序員果果》,關注有驚喜~~
微服務熔斷限流Hystrix之流聚合

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长兴县| 龙山县| 长乐市| 望都县| 秭归县| 育儿| 汉寿县| 电白县| 满洲里市| 聂荣县| 桐城市| 鞍山市| 乌什县| 山东| 渭南市| 天柱县| 舟曲县| 连云港市| 新民市| 理塘县| 同江市| 濮阳市| 北辰区| 伊通| 德兴市| 民丰县| 仙游县| 安泽县| 滦平县| 宁德市| 乌拉特前旗| 桐柏县| 翼城县| 南雄市| 嵊州市| 崇文区| 内黄县| 寻甸| 水富县| 丰都县| 四子王旗|