0

タービンを使用して hystrix からデータを集計しています。hystrix(localhost:23002/hystrix.stean) でデータを取得しようとすると、すべてうまくいきます。しかし、タービンを使用してデータを取得しようとすると、何も表示されません。これが私の構成です。

server:  
    port: 23002  
spring:  
    application:  
      name: hystrix-1  
eureka:  
    client:  
    serviceUrl:  
      defaultZone: http://t2.dcfservice.com:23001/eureka/  
  instance:  
    hostname: localhost  
    metadataMap:   
      cluster : MAIN  

spring:  
  application.name: microservice-hystrix-turbine  
server:  
  port: 23111  
security.basic.enabled: false  
turbine:  
  aggregator:  
    clusterConfig: MAIN       
    appConfig: hystrix-1  
    clusterNameExpression: metadata['cluster']  

eureka:  
  client:  
    serviceUrl:  
      defaultZone: http://t2.dcfservice.com:23001/eureka/ 

URL:localhost:23002/hystrix.stream でデータを取得できます 私の目標は、URL localhost:23111/turbine.stream?cluster=MAIN でデータを取得することです

4

1 に答える 1