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 I call
metrics.GetOrRegisterMeter("x", Stats).Mark(1)
once ever 2 seconds, then all the rates are 0. On one hand, this is reasonable considering the units are "marks/second" but this seems arbitrarily limiting.
As a work around, if I call
metrics.GetOrRegisterMeter("x", Stats).Mark(100)
And I divide the rate's by 100, I can a somewhat usable value.
Should I be using another method other than meter?
The text was updated successfully, but these errors were encountered:
If I call
metrics.GetOrRegisterMeter("x", Stats).Mark(1)
once ever 2 seconds, then all the rates are 0. On one hand, this is reasonable considering the units are "marks/second" but this seems arbitrarily limiting.
As a work around, if I call
metrics.GetOrRegisterMeter("x", Stats).Mark(100)
And I divide the rate's by 100, I can a somewhat usable value.
Should I be using another method other than meter?
The text was updated successfully, but these errors were encountered: