I use turbine-web-1.0.0.war to monit hystrix, and i found that i config several clusters, but only one cluster can work, the config.properties like this :
when i request http://localhost:8140/turbine/turbine.stream?cluster=aaa, i can get data, but when i request cluster=bbb, there is no data return, then i modify the config file to turbine.aggregator.clusterConfig=bbb,aaa , the result is cluster bbb can work but cluster aaa cannot work, it seems that only the first cluster in the config file can work ,i don't know why?
I use turbine-web-1.0.0.war to monit hystrix, and i found that i config several clusters, but only one cluster can work, the config.properties like this :
turbine.aggregator.clusterConfig=aaa,bbb turbine.ConfigPropertyBasedDiscovery.aaa.instances=host1,host2 turbine.instanceUrlSuffix.aaa=:3000/hystrix.stream turbine.ConfigPropertyBasedDiscovery.bbb.instances=host3,host4 turbine.instanceUrlSuffix.bbb=:4000/hystrix.stream
when i request
http://localhost:8140/turbine/turbine.stream?cluster=aaa
, i can get data, but when i request cluster=bbb, there is no data return, then i modify the config file toturbine.aggregator.clusterConfig=bbb,aaa
, the result is cluster bbb can work but cluster aaa cannot work, it seems that only the first cluster in the config file can work ,i don't know why?