-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrating Hystrix Dashboard with play framework #1164
Comments
The |
@voodoo719, you can use hystrix-vertx-metrics-stream, it's a vert.x implementation, but can be embedded in any project on JVM, even if you are not using vert.x, and doesn't need a servlet container. |
I'm not sure of its quality but I think the rxnetty version (hystrix-rx-netty-metrics-stream) would (or should be) the ideal implementation since both Play and Vertx use the same libraries (netty). In fact I would say the rxnetty should be the canonical choice for almost all since it can be embedded in almost anything and has many of the same dependencies has Hystrix does albeit it does require opening up another port. This is one of the reasons I'm not sure if its worth doing #1123 . |
@agentgt, the vertx and rxnetty implementations are basically the same, the vertx one can be embedded in basically anything too, this was the purpose through, if the project is not using already vertx or rxnetty i think choosing between one of em doesn't makes much diference, he can pick whatever he thinks is more easily, both has the same "limitation" that need to open another port. By the way, i agree with you about the #1123, i don't know if is worth doing it, since the vertx and rxnetty metrics implementation are both lightweight and pretty simple to implement, and non blocking. |
Closing due to inactivity. Please re-open if there's more to discuss |
Currently I am running play version 2.2.3. I am trying to integrate Hystrix Dashboard into my application but as it turns out hystrix-metrics-event-stream works with servlet containers like tomcat, JBoss..etc. Is there any way to get it running with play framework in Java. Deploying my play application as a WAR file is not an option.
The text was updated successfully, but these errors were encountered: