Is there any way I can fetch Hystrix streams (which produces metrices), since it is a server side event stream, thus it is not possible to fetch it using normal http client.
I was trying to using Jersey based SSE, however it is not able to do so.
Whenever, hystrix makes a call it produces some metrics data which can be accessed through a servlet (sample url for which is like: ::/hystrix.stream).
I want to capture response of this stream on a particular time.
Any way to do this?
Thank You.