I am working on two Spring-boot applications. I am using spring-cloud-starter-hystrix
for circuit-breaking & fallback methods using @EnableCircuitBreaker
.
Now I also want to have an hystrix dashboard with metrics
which can be achieved by Turbine Server
using @EnableTurbine @EnableHystrixDashboard
.
AFAIK the Turbine service gets the application URLs from Eureka
Instance. And in Turbine server app.properties we should give the other apps name. So that Turbine will check with Eureka on app url:port.
In my case, I am not using Eureka. So how can I use a Turbine Service to manually hardcode my application URL to fetch metric streams & display the metrics dashboard?
So basically in Turbine Server can I disable connection to Eureka & hardcode URLs to fetch metrics?
I have browsed for few hours & couldnt find a solution. Any help is appreciated.