Questions tagged [turbine]

107 questions
3
votes
2 answers

MVC 3 versus MVC Turbine

I have implemented my own inversion of control methodology in MVC 2. I was thinking of reviewing MVC Turbine and possibly switch to that. However, I noticed today that MVC 3 Preview 1 has been released and has new inversion of control support…
Brian McCord
  • 4,943
  • 7
  • 32
  • 44
3
votes
2 answers

Turbine AMQP does not receive Hystrix stream

I had a Turbine and Hystrix setup working, but decided to change it over to Turbine AMQP so I could aggregate multiple services into one stream/dashboard. I have set up a Turbine AMQP server running on localhost:8989, but it doesn't appear to be…
lp1776
  • 1,141
  • 1
  • 11
  • 19
2
votes
1 answer

ASP.NET MVC 1: "No parameterless constructor"-error after moving to VS2010 (using MVCTurbines)

Our current project is written in ASP.NET MVC 1 using mvc-turbines (and unity) for IOC/DI. When I try to start the application from 2008 everything works fine, but from 2010 I keep getting the "No parameterless constructor"-error. Why? Both are…
Cohen
  • 2,720
  • 26
  • 24
2
votes
1 answer

How can I test a Kotlin flow builder with delay() calls?

I have a piece of code in an Android Kotlin project similar to below, where I use the flow builder method to generate an infinite loop of periodic emissions: fun doSomething(): Flow = flow { var i = 0 while (true) { emit(i++) …
BillBttlicker
  • 55
  • 1
  • 4
2
votes
0 answers

Why does my stateflow not change in my unit tests?

I have a state flow that is init to true private val isCreateProfileDisabledData = MutableStateFlow(true) val isCreateProfileDisabled = isCreateProfileDisabledData.asStateFlow() And then this function that runs on init that looks like fun…
sonrohancue
  • 321
  • 2
  • 12
2
votes
2 answers

Field properties in org.springframework.cloud.netflix.turbine.stream.TurbineStreamAutoConfiguration required a bean of type

I went through links like: Spring Boot + Eureka Server + Hystrix with Turbine: empty turbine.stream, but still did not worked for me. This question is continuation of Unable to connect to Command Metric Stream. in Hystrix Dashboard issue. My source…
PAA
  • 1
  • 46
  • 174
  • 282
2
votes
0 answers

Spring Turbine Authentication

I am currently using an authenticated microservices arch with Hystrix. @SpringBootApplication @EnableDiscoveryClient @EnableHystrixDashboard @EnableTurbine public class HystrixServerApplication { public static void main(String[] args) { …
r3sT
  • 21
  • 3
2
votes
1 answer

Hystrix-dashboard not working with Kubeflix on Kubernetes

I'm deploying microservices to Kubernetes with Spring Boot, Fabric8's Spring-Cloug-Kubernetes and I now want to have a Hystrix Dashboard, provided by Fabric8 Kubeflix. I have set labels on my deployments : metadata : labels: …
2
votes
3 answers

Turbine instanceURLSuffix not working

I'm gathering hystrix streams from turbine but the services have the management port enabled on port 5555. When I set the property in…
Amin Abu-Taleb
  • 4,423
  • 6
  • 33
  • 50
2
votes
1 answer

How to enable Turbine stream using Cloud foundry Rabbit MQ service

I am trying to integrate Hystrix CircuitBreaker in my sample application.I have two apps, one behaving as server other as client. CircuitBreaker is working fine as well i can see Hystrix.stream form client. Now i am trying out multiple clients in…
John
  • 21
  • 2
2
votes
3 answers

Turbine can only find one host when using docker

I have 3 projects: A hystrix dashboard, a turbine server (using AMQP) and an API When I start in development env, I set up 2 instances of the API (using port 8080 and 8081). To test the turbine aggregation, I make calls and in the dashboard, I can…
Luiz E.
  • 6,769
  • 10
  • 58
  • 98
2
votes
0 answers

Hystrix turbine is not working

I am configuring hystrix turbine dashbord using ConfigPropertyBasedDiscovery . When I hit normal stream URL, it works fine http://localhost:8080/turbine.stream?cluster=EXAMPLE But when I try to load this cluster stream in dashbord it show below…
Rakesh
  • 139
  • 7
2
votes
2 answers

Spring Turbine dashboard not working

I am facing some issue while working on turbine dashboard. As I am able to get turbine stream for given cluster but not able to see anything on dashboard as it is just getting loaded as shown in below screenshots. Kindly help if any configuration is…
2
votes
1 answer

Spring Cloud Zuul CircuitBreaker All Routes via TurbineStream Not Turbine-AMQP

I'm using spring boot 1.3.1 and spring cloudl Brixtom.M4, While using springboot 1.3.1 i found that Turbine-AMQP project is no longer available instead we have now Spring Turbine Stream project. I what to user SpringTurbine with rabbitmq or kafka…
Dinkar Thakur
  • 3,025
  • 5
  • 23
  • 35
2
votes
0 answers

Possible to set wildcards in Turbine/eureka appconfig

I am trying to set up turbine and eureka to work with some basic services. I am very much in the teething stage, so please be nice :D I have it working with the following in my turbine config (note the appConfig line): turbine: …
user54140
  • 21
  • 2