I am trying to get a view on 2 different services that are running using Spring Boot. Both services are nicely registered in Eureka and now i want to get some Hystrix data plotted in the Turbine webapplication.
When testing out the single services using Turbine it works great:
http://localhost:2222/hystrix.stream (service1)
http://localhost:3333/hystrix.stream (service2)
I am trying to get a view on the dashboard which plots both of the services but whatever i try only the first service in the Turbine config is plotted.
turbine:
clusterNameExpression: new String('default')
appConfig: service1,service2
I seem to hit a wall when trying to get the data into the turbine.stream for both of the services.
Any hints or tips?