91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

springCloud分布式微服務云架構 第十二篇: 斷路器聚合監控

發布時間:2020-08-11 17:41:25 來源:ITPUB博客 閱讀:140 作者:gung123 欄目:軟件技術

上一篇文章講述了如何利用Hystrix Dashboard去監控斷路器的Hystrix command。當我們有很多個服務的時候,這就需要聚合所以服務的Hystrix Dashboard的數據了。這就需要用到Spring Cloud的另一個組件了,即Hystrix Turbine。

一、Hystrix Turbine簡介

看單個的Hystrix Dashboard的數據并沒有什么多大的價值,要想看這個系統的Hystrix Dashboard數據就需要用到Hystrix Turbine。了解springcloud架構可以加求求:三五三六二四七二五九,Hystrix Turbine將每個服務Hystrix Dashboard數據進行了整合。Hystrix Turbine的使用非常簡單,只需要引入相應的依賴和加上注解和配置就可以了。

二、準備工作

本文使用的工程為上一篇文章的工程,在此基礎上進行改造。因為我們需要多個服務的Dashboard,所以需要再建一個服務,取名為service-lucy,它的基本配置同service-hi,具體見源碼,在這里就不詳細說明。

三、創建service-turbine

引入相應的依賴:

 <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</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>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-turbine</artifactId>
        </dependency>
    </dependencies>

在其入口類ServiceTurbineApplication加上注解@EnableTurbine,開啟turbine,@EnableTurbine注解包含了@EnableDiscoveryClient注解,即開啟了注冊服務。

@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
@RestController
@EnableHystrix
@EnableHystrixDashboard
@EnableCircuitBreaker
@EnableTurbine
public class ServiceTurbineApplication {
    /**
     * http://localhost:8764/turbine.stream
     */
    public static void main(String[] args) {
        SpringApplication.run( ServiceTurbineApplication.class, args );
    }
}

配置文件application.yml:

server:
  port: 8764
spring:
  application:
    name: service-turbine
eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8761/eureka/
management:
  endpoints:
    web:
      exposure:
        include: "*"
      cors:
        allowed-origins: "*"
        allowed-methods: "*"
turbine:
  app-config: service-hi,service-lucy
  aggregator:
    clusterConfig: default
  clusterNameExpression: new String("default")
  combine-host: true
  instanceUrlSuffix:
    default: actuator/hystrix.stream

置文件注解寫的很清楚。

四、Turbine演示

依次開啟eureka-server、service-hi、service-lucy、service-turbine工程。

打開瀏覽器輸入:http://localhost:8764/turbine.stream,界面如下:

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片保存下來直接上傳(img-Mprwy3z2-1569837780939)(https://img-blog.csdn.net/20170416135735474?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvZm9yZXpw/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast)]

依次請求:

http://localhost:8762/hi?name=forezp

http://localhost:8763/hi?name=forezp

打開:http://localhost:8763/hystrix,輸入監控流http://localhost:8764/turbine.stream

springCloud分布式微服務云架構 第十二篇: 斷路器聚合監控

點擊monitor stream 進入頁面:

springCloud分布式微服務云架構 第十二篇: 斷路器聚合監控

可以看到這個頁面聚合了2個service的hystrix dashbord數據。

向AI問一下細節

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

AI

团风县| 砀山县| 阳西县| 肃宁县| 阿拉尔市| 德钦县| 钦州市| 余姚市| 噶尔县| 无锡市| 拉萨市| 柯坪县| 祁门县| 巴东县| 蒙山县| 天门市| 南阳市| 上高县| 饶平县| 樟树市| 岢岚县| 门源| 尚义县| 涡阳县| 赤峰市| 永年县| 裕民县| 剑河县| 南靖县| 深水埗区| 赤城县| 康马县| 建瓯市| 且末县| 开封县| 宽城| 荔浦县| 布尔津县| 伊川县| 镇坪县| 临汾市|