我的技术堆由以下
组成Hystrix仪表板工作正常,因为我能够使用从我的服务中暴露出来的hystrics.stream进行流式传输。
但是,每当我尝试将涡轮机添加到此堆栈时,/ turbine.stream仅在浏览器上重复返回data: {"type":"Ping"}
,因此Hystrix仪表板显示Unable to connect to Command Metric Stream
有人可以帮助我找出我错的地方吗?
以下是涡轮机的关键配置。 TurbineAppliation类只是一个带有@EnableTurbineStream的springboot应用程序,所以不要在下面列出它。
pom依赖项:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.1.RELEASE</version>
</parent>
<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>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-turbine-stream</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-stream-rabbit</artifactId>
</dependency>
</dependencies>
bootstrap.yml :(如果没关系,请忽略尤里卡特定配置,因为我自己没有调整它们)。对于工作正常的所有其他组件,配置服务器和eureka设置是相同的。
spring:
application:
name: Turbine
cloud:
config:
enabled: true
discovery:
enabled: true
serviceId: ConfigServer
management:
security:
enabled: false
eureka:
instance:
leaseRenewalIntervalInSeconds: 10
# leaseExpirationDurationInSeconds: 2
preferIpAddress: true
ipAddress: 127.0.0.1
client:
serviceUrl:
defaultZone: http://localhost:8761/discovery/eureka/ ---discovery is my eureka context root required for my app
application.yml
server:
port: 7980
info:
component: Turbine App
turbine:
aggregator:
clusterConfig: MY-SERVICE
appConfig: MY-SERVICE
clusterNameExpression: new String('default')
InstanceMonitor:
eventStream:
skipLineLogic:
enabled: false
答案 0 :(得分:0)
使用新版本的Spring Cloud Camden SR5,rabbitMQ队列从springCloudHystrixStream
重命名为turbineStreamInput
。
作为解决方法,您可以指定先前版本的spring-cloud-stream
。
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream</artifactId>
<version>1.1.0.RELEASE</version>
</dependency>
答案 1 :(得分:0)
在 pom
中使用 turbine 应用<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix</artifactId>
<version>1.3.0.M1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
答案 2 :(得分:0)
您好我使用Camden.SR6处理同样的问题。
在Turbine Service pom.xml中添加以下内容后,我能够在hystrix仪表板中使用涡轮流:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix-hystrix-amqp</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
我还添加了:spring.rabbitmq.address = rabbit-mq-server:5672 to bootstrap.properties file。