Interface Histogram
public interface Histogram
A histogram samples observations (usually things like request durations or response sizes) and
counts them in configurable buckets. It also provides a sum of all observed values.
-
Method Summary
-
Method Details
-
observe
void observe(double amount) Observe the given amount.- Parameters:
amount- the amount
-