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
While writing unit tests for LoggingMeterRegistry, I noticed a discrepancy between logs for Timer and FunctionTimer.
For Timer, I had: " throughput=" + print.unitlessRate(count) + ....
For FunctionTimer, I had " throughput=" + print.rate(count) + ....
The logs for function-timer were IMO incorrect; the throughput for this meter provides the number of measurements by seconds and does not depend on the base unit of the meter.
Therefore, I used unitlessRate for throughput to align the logging of those 2 meters and get similar logs for both:
Found by @fstaudt, see: #5590 (comment)
The fix is also here: #5590 (comment)
The text was updated successfully, but these errors were encountered: