oneMinuteRate property

  1. @override
double oneMinuteRate
override

Returns the one-minute exponentially-weighted moving average rate at which events have occurred since the meter was created.

This rate has the same exponential decay factor as the one-minute load average in the top Unix command.

Implementation

@override
double get oneMinuteRate {
  _tickIfNecessary();
  return _m1Rate.getRate(const Duration(seconds: 1));
}