Package org.apache.iceberg.metrics
Interface Histogram
- All Known Implementing Classes:
 FixedReservoirHistogram
public interface Histogram
- 
Method Details
- 
update
void update(long value) Update the histogram with a new value observed. - 
count
int count()Return the number of observations. - 
statistics
Histogram.Statistics statistics()Calculate the statistics of the observed values. 
 -