是否有可能以类似于spring 1.5的方式获取hystrix度量信息?
在1.5度量端点中,我有如下所示:
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].errorcount": 0,
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].requestcount": 0,
"gauge.servo.hystrix.hystrixcommand.[service-name].[method].latencytotal_mean": 0,但是现在对于使用千分尺的执行器/度量端点,我找不到任何关于"hystrix“、"netflix”等术语的引用。
我已经用@EnableCircuitBreaker和hystrix:metrics:enabled: true配置了我的应用程序。
有一些方法可以不像我以前那样使用hystrix.stream端点来获取这些信息?或者这应该有效我是不是做错了什么?
https://stackoverflow.com/questions/50728750
复制相似问题