April 2018
Intermediate to advanced
432 pages
10h 38m
English
Before making any changes to enable Turbine for our application, we should start by enabling service discovery, which is required here. Switch to the hystrix_with_turbine branch to access the version of our sample system that supports service discovery with Eureka and aggregates Hystrix's streams using Turbine. To enable Turbine for the project exposing the UI dashboard, just include spring-cloud-starter-turbine in the dependencies and annotate the main application class with @EnableTurbine:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-turbine</artifactId></dependency>
The turbine.appConfig configuration property is a list of Eureka service names that Turbine will use to look ...