場景 SpringCloud-使用熔斷器防止服務雪崩-Ribbon和Feign方式(附代碼下載): https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102616697 在上面已經實現使用Ribbon和Feign的方式使用熔斷器,但是 ...
場景
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 { @Bean public ServletRegistrationBean getServlet() { HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet(); ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet); registrationBean.setLoadOnStartup(1); registrationBean.addUrlMappings("/hystrix.stream"); registrationBean.setName("HystrixMetricsStreamServlet"); return registrationBean; } }
效果
打開瀏覽器,輸入:
然後在url這裡,輸入上面在配置類中配置的url。
Delay表示監控的間隔,預設是2秒鐘。
Title可以自己隨意起。
然後點擊Monitor Stream按鈕。
此時我們多次觸發熔斷器,這裡不啟動服務提供者,使用服務消費者Feign的方式去請求服務,使其觸發熔斷,打開瀏覽器輸入:
http://localhost:8765/hi?message=HelloFrign
然後再回到熔斷儀錶盤這裡