Enabling Turbine

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 ...

Get Mastering Spring Cloud now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.