1. 程式人生 > >java版spring cloud+spring boot+redis多租戶社交電子商務平臺(十二)斷路器監控(Hystrix Dashboard)

java版spring cloud+spring boot+redis多租戶社交電子商務平臺(十二)斷路器監控(Hystrix Dashboard)

電子商務社交平臺原始碼請加企鵝求求:一零三八七七四六二六.在我的第四篇文章斷路器講述瞭如何使用斷路器,並簡單的介紹了下Hystrix Dashboard元件,這篇文章更加詳細的介紹Hystrix Dashboard。

一、Hystrix Dashboard簡介

在微服務架構中為例保證程式的可用性,防止程式出錯導致網路阻塞,出現了斷路器模型。斷路器的狀況反應了一個程式的可用性和健壯性,它是一個重要指標。Hystrix Dashboard是作為斷路器狀態的一個元件,提供了資料監控和友好的圖形化介面。

二、準備工作

本文的的工程栗子,來源於第一篇文章的栗子,在它的基礎上進行改造。

三、開始改造service-hi

在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.

spring cloud b2b2c電子商務社交平臺原始碼請加企鵝求求:一零三