您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Spring Cloud如何實現斷路器監控”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Spring Cloud如何實現斷路器監控”這篇文章吧。
在微服務架構中為例保證程序的可用性,防止程序出錯導致網絡阻塞,出現了斷路器模型。斷路器的狀況反應了一個程序的可用性和健壯性,它是一個重要指標。Hystrix Dashboard是作為斷路器狀態的一個組件,提供了數據監控和友好的圖形化界面。
本文的的工程栗子,來源于第一篇文章的栗子,在它的基礎上進行改造。
在pom的工程文件引入相應的依賴:
<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> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency>
其中,這三個依賴是必須的,缺一不可。
在程序的入口ServiceHiApplication類,加上@EnableHystrix注解開啟斷路器,這個是必須的,并且需要在程序中聲明斷路點HystrixCommand;加上@EnableHystrixDashboard注解,開啟HystrixDashboard
@SpringBootApplication @EnableEurekaClient @RestController @EnableHystrix @EnableHystrixDashboard public class ServiceHiApplication { public static void main(String[] args) { SpringApplication.run(ServiceHiApplication.class, args); } @Value("${server.port}") String port; @RequestMapping("/hi") @HystrixCommand(fallbackMethod = "hiError") public String home(@RequestParam String name) { return "hi "+name+",i am from port:" +port; } public String hiError(String name) { return "hi,"+name+",sorry,error!"; } }
運行程序: 依次開啟eureka-server 和service-hi.
打開http://localhost:8762/hystrix.stream,可以看到一些具體的數據:
打開locahost:8762/hystrix 可以看見以下界面:
在界面依次輸入:locahost:8762/hystrix.stream 、2000 、miya
;點確定。
在另一個窗口輸入: http://localhost:8762/hi?name=forezp
重新刷新hystrix.stream網頁,你會看到良好的圖形化界面:
以上是“Spring Cloud如何實現斷路器監控”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。