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

溫馨提示×

溫馨提示×

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

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

springcloud中如何實現熔斷監控Turbine

發布時間:2021-12-29 13:56:10 來源:億速云 閱讀:153 作者:小新 欄目:軟件技術

小編給大家分享一下springcloud中如何實現熔斷監控Turbine,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

在復雜的分布式系統中,相同服務的節點經常需要部署上百甚至上千個,很多時候,運維人員希望能夠把相同服務的節點狀態以一個整體集群的形式展現出來,這樣可以更好的把握整個系統的狀態。 為此,Netflix提供了一個開源項目(Turbine)來提供把多個hystrix.stream的內容聚合為一個數據源供Dashboard展示。

1、添加依賴

<dependencies>
	<dependency>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-starter-turbine</artifactId>
	</dependency>
	<dependency>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-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-hystrix-dashboard</artifactId>
	</dependency>
</dependencies>

2、配置文件

spring.application.name=hystrix-dashboard-turbine
server.port=8001
turbine.appConfig=node01,node02
turbine.aggregator.clusterConfig= default
turbine.clusterNameExpression= new String("default")
 
eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/

turbine.appConfig :配置Eureka中的serviceId列表,表明監控哪些服務

turbine.aggregator.clusterConfig :指定聚合哪些集群,多個使用”,”分割,默認為default。可使用http://.../turbine.stream?cluster={clusterConfig之一}訪問

turbine.clusterNameExpression : 1. clusterNameExpression指定集群名稱,默認表達式appName;此時:turbine.aggregator.clusterConfig需要配置想要監控的應用名稱;2. 當clusterNameExpression: default時,turbine.aggregator.clusterConfig可以不寫,因為默認就是default;3. 當clusterNameExpression: metadata[‘cluster’]時,假設想要監控的應用配置了eureka.instance.metadata-map.cluster: ABC,則需要配置,同時turbine.aggregator.clusterConfig: ABC

3、啟動類

啟動類添加@EnableTurbine,激活對Turbine的支持

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

到此Turbine(hystrix-dashboard-turbine)配置完成

4、測試

在示例項目spring-cloud-consumer-hystrix基礎上修改為兩個服務的調用者spring-cloud-consumer-node1和spring-cloud-consumer-node2

spring-cloud-consumer-node1項目改動如下: application.properties文件內容

spring.application.name=node01
server.port=9001
feign.hystrix.enabled=true
 
eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/

spring-cloud-consumer-node2項目改動如下: application.properties文件內容

spring.application.name=node02
server.port=9002
feign.hystrix.enabled=true
 
eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/

HelloRemote類修改:

@FeignClient(name= "spring-cloud-producer2", fallback = HelloRemoteHystrix.class)
public interface HelloRemote {
 
    @RequestMapping(value = "/hello")
    public String hello2(@RequestParam(value = "name") String name);
 
}

對應的HelloRemoteHystrix和ConsumerController類跟隨修改,具體查看代碼

修改完畢后,依次啟動spring-cloud-eureka、spring-cloud-consumer-node1、spring-cloud-consumer-node1、hystrix-dashboard-turbine(Turbine)

打開eureka后臺可以看到注冊了三個服務:

springcloud中如何實現熔斷監控Turbine

訪問 http://localhost:8001/turbine.stream

返回:

: ping
data: {"reportingHostsLast10Seconds":1,"name":"meta","type":"meta","timestamp":1494921985839}

并且會不斷刷新以獲取實時的監控數據,說明和單個的監控類似,返回監控項目的信息。進行圖形化監控查看,輸入:http://localhost:8001/hystrix,返回酷酷的小熊界面,輸入: http://localhost:8001/turbine.stream,然后點擊 Monitor Stream ,可以看到出現了倆個監控列表

springcloud中如何實現熔斷監控Turbine

以上是“springcloud中如何實現熔斷監控Turbine”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

岐山县| 自治县| 嘉义县| 三河市| 监利县| 南雄市| 桂林市| 青海省| 永川市| 鲁山县| 彩票| 西昌市| 太仓市| 灵丘县| 三穗县| 明水县| 伊宁县| 吉安市| 乌兰县| 青浦区| 奉化市| 凭祥市| 四川省| 怀来县| 甘南县| 崇义县| 汕头市| 浦县| 吉水县| 邹城市| 凤凰县| 遂宁市| 滁州市| 大安市| 柳林县| 乌拉特中旗| 龙江县| 耿马| 始兴县| 融水| 黄石市|