com.yammer.metrics.Histogram Maven / Gradle / Ivy
The newest version!
package com.yammer.metrics;
import java.util.concurrent.atomic.AtomicLong;
/**
* A metric which calculates the distribution of a value.
*
* @see Accurately computing running
* variance
*/
public class Histogram implements Metric, Sampling {
private final Reservoir reservoir;
private final AtomicLong count;
/**
* Creates a new {@link Histogram} with the given reservoir.
*
* @param reservoir the reservoir to create a histogram from
*/
public Histogram(Reservoir reservoir) {
this.reservoir = reservoir;
this.count = new AtomicLong(0);
}
/**
* Adds a recorded value.
*
* @param value the length of the value
*/
public void update(int value) {
update((long) value);
}
/**
* Adds a recorded value.
*
* @param value the length of the value
*/
public void update(long value) {
count.incrementAndGet();
reservoir.update(value);
}
/**
* Returns the number of values recorded.
*
* @return the number of values recorded
*/
public long getCount() {
return count.get();
}
@Override
public Snapshot getSnapshot() {
return reservoir.getSnapshot();
}
}