Interface ExponentialHistogramSnapShot
public interface ExponentialHistogramSnapShot
This is an internal class and might have breaking changes, external implementations SHOULD NOT rely on this implementation.
- Since:
- 1.14.0
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classRepresents a dense representation exponential bucket counts. -
Method Summary
Modifier and TypeMethodDescriptionbooleanisEmpty()negative()Returns the negative range of exponential bucket counts.positive()Returns the positive range of exponential bucket counts.intscale()Returns the scale of the ExponentialHistogram.longReturns the count of values that are less than or equal tozeroThreshold().doubleReturns the threshold below which (inclusive) the values are counted inzeroCount().
-
Method Details
-
scale
int scale()Returns the scale of the ExponentialHistogram. -
zeroCount
long zeroCount()Returns the count of values that are less than or equal tozeroThreshold(). -
positive
Returns the positive range of exponential bucket counts. -
negative
Returns the negative range of exponential bucket counts. -
zeroThreshold
double zeroThreshold()Returns the threshold below which (inclusive) the values are counted inzeroCount(). -
isEmpty
boolean isEmpty()
-