turbine是聚合服務(wù)器發(fā)送事件流數(shù)據(jù)的一個(gè)工具,hystrix的監(jiān)控中,只能監(jiān)控單個(gè)節(jié)點(diǎn),實(shí)際生產(chǎn)中都為集群,因此可以通過turbine來監(jiān)控集群下hystrix的metrics情況,通過eureka來發(fā)現(xiàn)hystrix服務(wù)。
新建turbine項(xiàng)目
turbineapplication.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package turbine; import org.springframework.boot.springapplication; import org.springframework.boot.autoconfigure.springbootapplication; import org.springframework.cloud.netflix.hystrix.enablehystrix; import org.springframework.cloud.netflix.hystrix.dashboard.enablehystrixdashboard; import org.springframework.cloud.netflix.turbine.enableturbine; /** * created by sai.luo on 2017/4/26. */ @springbootapplication @enableturbine @enablehystrix @enablehystrixdashboard public class turbineapplication{ public static void main(string[] args) { springapplication.run(turbineapplication. class ,args); } } |
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?xml version= "1.0" encoding= "utf-8" ?> <project xmlns= "http://maven.apache.org/pom/4.0.0" xmlns:xsi= "http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation= "http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" > <modelversion> 4.0 . 0 </modelversion> <artifactid>turbine</artifactid> <properties> <project.build.sourceencoding>utf- 8 </project.build.sourceencoding> <java.version> 1.8 </java.version> </properties> <parent> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-parent</artifactid> <version> 1.5 . 2 .release</version> <relativepath/> <!-- lookup parent from repository --> </parent> <dependencies> <!-- hystrix依賴 --> <dependency> <groupid>org.springframework.cloud</groupid> <artifactid>spring-cloud-starter-hystrix</artifactid> </dependency> <dependency> <groupid>org.springframework.cloud</groupid> <artifactid>spring-cloud-starter-hystrix-dashboard</artifactid> </dependency> <!-- turnbine依賴 --> <dependency> <groupid>org.springframework.cloud</groupid> <artifactid>spring-cloud-starter-turbine</artifactid> </dependency> </dependencies> <dependencymanagement> <dependencies> <dependency> <groupid>org.springframework.cloud</groupid> <artifactid>spring-cloud-dependencies</artifactid> <version>camden.sr5</version> <type>pom</type> <scope> import </scope> </dependency> </dependencies> </dependencymanagement> <build> <plugins> <plugin> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-maven-plugin</artifactid> </plugin> </plugins> </build> </project> |
application.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
spring: application: name: turbine server: port: 8000 turbine: app-config: hello,helloclient ##需要監(jiān)控的服務(wù)名 aggregator: clusterconfig: main ##需要監(jiān)控的服務(wù)集群名 clusternameexpression: metadata[ 'cluster' ] eureka: instance: preferipaddress: true statuspageurlpath: /info.html client: serviceurl: defaultzone: http: //localhost:8761/eureka/ |
啟動服務(wù)
helloserviceeureka 項(xiàng)目 appliation.yml 增加集群配置
更改為
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
spring: application: name: hello server: port: 9001 eureka: instance: lease-renewal-interval-in-seconds: 3 lease-expiration-duration-in-seconds: 5 metadata-map: cluster: main client: serviceurl: defaultzone: http: //localhost:8761/eureka/ registry-fetch-interval-seconds: 3 logging: level: com: netflix: eureka: off discovery: off |
pom.xml增加hystrix依賴包
1
2
3
4
|
<dependency> <groupid>org.springframework.cloud</groupid> <artifactid>spring-cloud-starter-hystrix</artifactid> </dependency> |
同理ribboneureka 項(xiàng)目 application.yml 增加集群配置
更改后如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
spring: application: name: helloclient server: port: 20000 eureka: instance: lease-renewal-interval-in-seconds: 3 lease-expiration-duration-in-seconds: 5 metadata-map: cluster: main client: serviceurl: defaultzone: http: //localhost:8761/eureka/ registry-fetch-interval-seconds: 3 logging: level: com: netflix: eureka: off discovery: off |
pom.xml增加hystrix依賴包
ribboneurekaapplication.java 增加注解
1
|
@enablehystrix |
啟動項(xiàng)目
訪問 localhost:8000/hystrixx 可以看到頁面
注: turbine只能監(jiān)控hystrix服務(wù),不是hystrix服務(wù),不能監(jiān)控,如 hello這個(gè)服務(wù)雖然配置了集群,但是沒有使用hystrix,所以不會受監(jiān)控。
項(xiàng)目地址 https://github.com/luosai001/spring-cloud-sample/tree/master
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。
原文鏈接:https://blog.csdn.net/luosai19910103/article/details/70820904