日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

SpringCloud-使用熔断器仪表盘监控熔断

發布時間:2025/3/19 javascript 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 SpringCloud-使用熔断器仪表盘监控熔断 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

場景

SpringCloud-使用熔斷器防止服務雪崩-Ribbon和Feign方式(附代碼下載):

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102616697

在上面已經實現使用Ribbon和Feign的方式使用熔斷器,但是如果服務一直在被熔斷需要怎么解決。

所以這里使用熔斷儀表盤監控熔斷。

這里使用feign的方式使用監控。

注:

博客:
https://blog.csdn.net/badao_liumang_qizhi
關注公眾號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。

實現

在pom.xml中加入依賴

<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId> </dependency>

然后在Application中添加注解@EnableHystrixDashboard

package com.badao.hello.spring.cloud.web.feign;import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard; import org.springframework.cloud.openfeign.EnableFeignClients;@SpringBootApplication @EnableDiscoveryClient @EnableFeignClients @EnableHystrixDashboard public class WebAdminFeignApplication {public static void main(String[] args) {SpringApplication.run(WebAdminFeignApplication.class, args);} }

創建hystrix.stream的Servlet配置

在包下新建config包,在config包下新建config配置類

package com.badao.hello.spring.cloud.web.feign.config;import com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet; import org.springframework.boot.web.servlet.ServletRegistrationBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration;@Configuration public class HystrixDashboardConfiguration {@Beanpublic ServletRegistrationBean getServlet() {HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);registrationBean.setLoadOnStartup(1);registrationBean.addUrlMappings("/hystrix.stream");registrationBean.setName("HystrixMetricsStreamServlet");return registrationBean;} }

?

效果

打開瀏覽器,輸入:

http://localhost:8765/hystrix

?

然后在url這里,輸入上面在配置類中配置的url。

Delay表示監控的間隔,默認是2秒鐘。

Title可以自己隨意起。

?

然后點擊Monitor Stream按鈕。

?

此時我們多次觸發熔斷器,這里不啟動服務提供者,使用服務消費者Feign的方式去請求服務,使其觸發熔斷,打開瀏覽器輸入:

http://localhost:8765/hi?message=HelloFrign

然后再回到熔斷儀表盤這里

?

總結

以上是生活随笔為你收集整理的SpringCloud-使用熔断器仪表盘监控熔断的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。