Questions tagged [turbine]
107 questions
22
votes
2 answers
Spring Boot + Eureka Server + Hystrix with Turbine: empty turbine.stream
I'm trying to run Spring Boot (with Spring Cloud) + Eureka Server + Hystrix Dashboard and Turbine stream, but I run into a problem I couldn't find any solution so far. I use Spring Boot 1.2.1.RELEASE and Spring Cloud 1.0.0.RC2. Here is what I…

Szymon Stepniak
- 40,216
- 10
- 104
- 131
14
votes
1 answer
Turbine Dashboard Is not Loading for Aggregation in Spring Cloud Microservice
I am trying to develop a spring cloud microservice using spring MVC and spring boot framework. And Eureka server , Zuul , Ribbon , hystrix and Turbine using for spring cloud. I already developed a microservice and implemented only hystrix dashboard.…

Mr.DevEng
- 2,651
- 14
- 57
- 115
10
votes
3 answers
Built with optimizations enabled or without debug information
I'm currently trying to find out why my InjectableAttributes never get to the filter part.
Therefor I linked in the source project directly so I could easily put breakpoints etc.
When I build however I get the following message:
The following…

Boris Callens
- 90,659
- 85
- 207
- 305
8
votes
1 answer
How to add into Turbine additional Hystrix metrics aggregations
My setup is spring boot cloud using netflix library
I managed to have Turbine aggregating Hystrix metrics from one service. However when I add more services I cant see them.
This is my setup (also uploaded this into github at:
Project On…

rayman
- 20,786
- 45
- 148
- 246
6
votes
2 answers
Can Hystrix be used without Eureka/ Ribbon or other Netflix OSS modules
We have an infrastructure with our own API gateway, service discovery and load balancing. However for resiliency purposes I need to use Hystrix.
With spring cloud netflix, can Hystrix (i.e. The circuit breaker annotation) be used without Eureka/…

Fahim Farook
- 1,482
- 2
- 14
- 38
5
votes
1 answer
Testing Kotlin Flows with shareIn()
I'm trying to test a Flow that uses shareIn with Turbine, but I'm a bit lost why my tests are failing and how I can fix it.
class MyTest {
private val scope = CoroutineScope(Dispatchers.Default)
private val mutableSharedFlow =…

nhaarman
- 98,571
- 55
- 246
- 278
5
votes
2 answers
spring cloud stream 'bindingService' error
I am trying to implement Turbine AMQP to consolidate all the stream from multiple services to Hystrix Dashboard.
So I added couple fo dependencies to the gradle file and after that I am not able to start my application for some reason.
LOGS from…

Grinish Nepal
- 3,037
- 3
- 30
- 49
4
votes
1 answer
How to test ViewModel + Flow with API call from init{}
I have ViewModel which exposes flow to fragment. I am calling API from ViewModel's init which emits different states. I am not able to write unit test to check all the emitted states.
My ViewModel
class FooViewModel constructor( fooProvider :…

DCoder
- 3,486
- 7
- 36
- 68
4
votes
0 answers
Spring boot Turbine.stream with ssl Not working
We are trying to enable https in turbine stream. And we are facing below problem:
ERROR 10644 --- [o-eventloop-3-1] r.n.p.h.s.ServerRequestResponseConverter : Invalid HTTP request recieved. Decoder error.
java.lang.IllegalArgumentException: invalid…

Sagar Gaikwad
- 83
- 5
4
votes
0 answers
Turbine AMQP not receiving the hystrix.stream from services
I am trying to implement Turbine AMQP to actually consolidate all the hystrix.stream from multiple services into one and show it in hystrix dashboard.
Hystrix.stream from my service looks fine:-
Sample of what I am seeing in the stream from my…

Grinish Nepal
- 3,037
- 3
- 30
- 49
4
votes
1 answer
Where to call RouteDebugger.RewriteRoutesForTesting() when route registration is injected?
As Phil Haack explains on his blog entry, the Route Debugger helps visualizing your routing tables.
My site however gets it's routing injected by the MVCTurbine dependency injection (using Unity) like so:
public class DefaultRoutRegistration :…

Boris Callens
- 90,659
- 85
- 207
- 305
3
votes
1 answer
How to run an integration test for the Repository layer of an Android app with Firestore as a backend using Flow
I am currently trying to write an integration test for my repository layer that tests if I call a method, getExercises(), then it returns List, provided that the data is loaded into the local Firestore emulator ahead of time.
So far I got…

Peter
- 453
- 3
- 18
3
votes
1 answer
Turbine Dashboard Metrics without Eureka
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…

John Seen
- 701
- 4
- 15
- 31
3
votes
2 answers
Hystrix and Turbine does not work with Spring boot 2 and Spring cloud Finchley.M8
I tried turbine + hystrix dashboard with Spring boot 2 and latest versions of Spring cloud, seems exist some problem and turbine could not get stream from reactive service. I just uploaded simple microservices to…

Armen Arzumanyan
- 1,939
- 3
- 30
- 56
3
votes
2 answers
Zuul defaulting hystrix isolation strategy to SEMAPHORE
This is in continuation to my previous question where in my hystrix dashboard the Thread Pool section keeps on loading:- Hystrix Dashboard with Turbine issue
Why is zuul forcing the isolation strategy for hystrix to be SEMAPHORE. I tried adding the…

Grinish Nepal
- 3,037
- 3
- 30
- 49