You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When generating stats for the Hystrix dashboard, much of them are rolling numbers that reset after a configurable amount of time. This makes sense because if you're monitoring an application's performance, you probably don't care about the 5000 failures that happened yesterday, because you fixed that problem already with a hotfix - but if your stats aren't rolling, then you'll keep seeing that 5000 failure number until the app with the circuit is restarted
The text was updated successfully, but these errors were encountered:
This replaces the existing cumulative behavior of a circuit's status, in
favor of snapshots every `X` milliseconds, where `X` defaults to 10000,
e.g. 10 seconds. This allows for rolling average calculations on
important statistics for Hystrix dashboard, and is in pursuit of
#32 (but does not
complete it).
When generating stats for the Hystrix dashboard, much of them are rolling numbers that reset after a configurable amount of time. This makes sense because if you're monitoring an application's performance, you probably don't care about the 5000 failures that happened yesterday, because you fixed that problem already with a hotfix - but if your stats aren't rolling, then you'll keep seeing that 5000 failure number until the app with the circuit is restarted
The text was updated successfully, but these errors were encountered: