My application integrates Hystrix as circuit breaker, and the stream endpoint is exposed at /hystrix.stream
. Now I want to control the streaming frequency by 'delay' parameter:
curl "http://localhost:9000/hystrix.stream?delay=1000"
Unfortunately 'delay' doesn't work. I still receive the hystrix metrics data twice per second.
Help, thanks!