Questions tagged [turbine]
107 questions
2
votes
1 answer
spring cloud hystrix turbine amqp connection refused with docker
I have setup a demo application based on Spring Cloud and the Netflix OSS suite of offerings. When I run all the modules, the app runs perfectly in my local development environment as well as out on Pivotal Web Services.
The problem I am running…

dmfrey
- 1,230
- 1
- 17
- 33
2
votes
1 answer
what's for the spring-cloud-turbine clusterNameExpression config mean?
when i used the spring-cloud-turbine
i Configured the turbine
turbine:
clusterNameExpression: new String("default")
appConfig: crm,hystrix
i don't know what's the clusterNameExpression mean
when i started the turbine server, the log is
Just…

Tonney Bing
- 230
- 2
- 9
2
votes
1 answer
Spring Cloud Turbine - Unable to handle multiple clients?
I’m having a bit of trouble getting Turbine to work in Spring Cloud. In a nutshell, I can’t determine how to configure it to aggregate circuits from more than one application at a time.
I have 6 separate services, a eureka server, and a turbine…

Ken Krueger
- 1,005
- 14
- 26
2
votes
1 answer
What is MVC Turbine
where we can use MVC Turbine?how can we implement this with ASP.NET MVC?

Pankaj
- 4,419
- 16
- 50
- 72
2
votes
4 answers
Am I wrong in wanting to roll my own Authenticate / Authorize system given the following requirements?
In my pet project I want to have a user system with the following requirements:
It needs to work with Db4o as a persistance model
I want to use DI (by means of Turbine) to deliver the needed dependencies to my user model
It needs to be easy to plug…

Boris Callens
- 90,659
- 85
- 207
- 305
1
vote
1 answer
MVC Turbine routes not registering
I've been setting up a project to run with MVC Turbine and have been having issues getting the IRouteRegistrators to be called. Another person on my team has had this issue in the past, but he can't remember what he had to do to resolve it.
The code…

fire.eagle
- 2,723
- 1
- 21
- 23
1
vote
0 answers
Testing StateFlow that has emission in init block
I have BaseViewModel with logic that goes something like this:
val baseViewState = MutableViewState(State.Inital)
init {
viewModelScope.launch {
val data = getData()
onDataGot()
baseViewState.update {State.Second}
}
}
and then in…

RetRo99
- 56
- 4
1
vote
0 answers
ContentResolver from ProviderTestRule doesn't notify ContentObserver
I'm trying to test my Flow based ContentResolver extension function:
abstract class Query {
abstract suspend fun runQuery(): Cursor?
}
private val mainThread = Handler(Looper.getMainLooper())
fun ContentResolver.observeQuery(
uri: Uri,
…

Frank Egan
- 56
- 1
- 8
1
vote
1 answer
How to bind c# dotnet core 3.1 microservice stream to turbine server stream
I have a turbine server running on openshift 3 and deployed a donet core 3.1 c# microservice using steeltoe 3.0.2 circuit breaker libraries. I can monitor the microservice stream on hystrix dashboard through service stream url…

iperezmel78
- 415
- 5
- 20
1
vote
0 answers
Spring cloud Turbine service is not subscribed on Rabbit stream
In my spring cloud application I want configure turbine service for dashboard. Example below:
server:
port: 0
turbine:
amqp:
port: 8989
---
spring:
profiles: docker
rabbitmq:
host: rabbitmq
turbine:
clusterNameExpression: new…

Sergii
- 7,044
- 14
- 58
- 116
1
vote
1 answer
Turbine not working with spring boot 2.0.6 and spring cloud Finchley.SR1
I am trying to implement a simple service which will use turbine, but it doesn't work - turbine not getting any data from other Hystrix-used services.
pom.xml

yoka791
- 576
- 5
- 17
1
vote
1 answer
Spring Boot Turbine
I tried turbine + hystrix dashboard with Spring boot 2. But i get problem, turbine dashboard only shows : Loading ...I have working Eureka server and application (sends proper hystrix.stream)
When i look at turbine.stream its only
: ping
data:…

Janusz Chytrus
- 11
- 4
1
vote
0 answers
turbine.cluster-name-expression invalid
when i set this in properties
turbine.cluster-name-expression="default"
i think Hystrix Dashboard monitor turbine seems like be this
book picture:
this name is application.name and point and server name but in my program it dose't work
like this…

fix angel
- 11
- 1
1
vote
1 answer
Turbine syntax highlighting
I'm trying to get Turbine CSS syntax highlighting (for the cssp files) in netbeans but i've been not able to find any highlighter or way to do it.
Do you have any idea of how to do it?

SubniC
- 9,807
- 4
- 26
- 33
1
vote
1 answer
Spring Cloud Turbine AMQP doesn't working with Hystrix Dashboard
I'm trying to set up spring cloud turbine amqp and hystrix dashboard. But when I start all applications hystrix dashboard doesn't show me anything:
hystrix-dashboard-screenshot-link
But when I open turbine stream link, I see not empty…
user7785420