我有一个使用Jersey的本地Web服务,路径看起来像
http://localhost:5000/search?...
然后我按照本教程https://github.com/Netflix/Hystrix/wiki/Dashboard
将Hystrix仪表板安装到我的Tomcat我在突出显示的文本框中使用了哪个URL?我试过localhost:5000 / hystrix.stream,但它没有用(我的本地服务正在运行)。
答案 0 :(得分:1)
事实证明我没有注册servlet。
我使用dropwizard,所以只需添加以下代码即可。
environment.getApplicationContext()。addServlet(“com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet”,“/ hystrix.stream”);