public class RateCounter extends Object implements com.codahale.metrics.Gauge<Double>
A Counter metric that also implements a Gauge to report the average rate of events per second over 1 minute. This class was added as a compromise to using a Meter, which has a much larger performance impact.
Modifier and Type | Method and Description |
---|---|
Double |
getValue()
Reports the the average rate of events per second over 1 minute for the metric.
|
void |
inc(long n) |
Copyright © 2022 The Apache Software Foundation. All rights reserved.