我想阅读我的涡轮机应用程序在领事处注册的服务。我为此配置了涡轮机:
Bootstrap.yml
server:
port: 8050
spring:
cloud:
consul:
discovery:
prefer-ip-address: true
host: *****hostName where consul reside****
port: 8500
turbine:
aggregator:
clusterConfig: dm-geo
appConfig: dm-geo
有依赖关系 -
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix-turbine</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-consul-discovery</artifactId>
</dependency>
在主应用程序类 -
上 @EnableTurbine
@EnableHystrixDashboard
@EnableDiscoveryClient
这些所有配置均在涡轮机应用中完成。
现在在consul上注册的每个服务都有依赖项 -
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-consul-discovery</artifactId>
</dependency>
和
@EnableHystrix
@EnableDiscoveryClient
在HystrixCommand
的应用程序类中,我们使用正确的回退逻辑调用其他服务的方法。
application.properties:-
spring.application.name=dm-geo
现在我们的python脚本需要配置发现这些服务并在领事上注册。 当我尝试获取每个hystrix.stream时,我能够获得hystrix仪表板。
但是从我的涡轮机应用程序中,错误记录为
"timestamp":"2016-07-27T17:33:14.406+05:30","message":"Could not initiate connection to host, giving up,"logger_name":"com netflix turbine monitor instance InstanceMonitor","thread_name":"InstanceMonitor"
在这方面可以有人帮忙吗?
答案 0 :(得分:0)
现在已经解决了我们的应用涡轮机问题。基本上,流是通过URL验证的,所以我必须跳过这个,然后完美地显示涡轮流和仪表板。例如:
security.ignored = /turbine.stream
在spring boot应用程序中。