Hystrix仪表板:如何使用

时间:2015-10-19 21:48:26

标签: hystrix

我有一个使用Jersey的本地Web服务,路径看起来像

http://localhost:5000/search?...

然后我按照本教程https://github.com/Netflix/Hystrix/wiki/Dashboard

将Hystrix仪表板安装到我的Tomcat

我在突出显示的文本框中使用了哪个URL?我试过localhost:5000 / hystrix.stream,但它没有用(我的本地服务正在运行)。

enter image description here

1 个答案:

答案 0 :(得分:1)

事实证明我没有注册servlet。

我使用dropwizard,所以只需添加以下代码即可。

environment.getApplicationContext()。addServlet(“com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet”,“/ hystrix.stream”);