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