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
If you sample a counter at ts1 and ts2, the counter will continue to report for every check loop as the same value at ts2.
The correct behavior is we should clear all values except the last for a counter on each flush. Therefore if no values come in during the next check run, no value will be flushed. But if a new value does come in, the rate will still be calculated against the last one.
The text was updated successfully, but these errors were encountered:
If you sample a counter at
ts1
andts2
, the counter will continue to report for every check loop as the same value atts2
.The correct behavior is we should clear all values except the last for a counter on each flush. Therefore if no values come in during the next check run, no value will be flushed. But if a new value does come in, the rate will still be calculated against the last one.
The text was updated successfully, but these errors were encountered: