Netflix / Hystrix

Hystrix is a latency and fault tolerance library designed to isolate points of access to remote systems, services and 3rd party libraries, stop cascading failure and enable resilience in complex distributed systems where failure is inevitable.
24.08k stars 4.7k forks source link

Request level monitoring of hystrix streams. #1983

Closed GiteshKhannaOYO closed 4 years ago

GiteshKhannaOYO commented 4 years ago

Does hystrix support request level monitoring?

For example, I have certain types of requests which I send to a single external API.

Request A : CITY REQUEST Request B : COUNTRY REQUEST Request C : GLOBAL REQUEST

I want to monitor these types of requests separately on my dashboard and I don't want to create separate services/methods and annotate them separately with different command keys because the difference just lies in the parameters of the request.

GiteshKhannaOYO commented 4 years ago

Implemented it using Variable Command Key.