Interface HistogramPointData
- All Superinterfaces:
PointData
- All Known Implementing Classes:
AutoValue_ImmutableHistogramPointData, ImmutableHistogramPointData, MutableHistogramPointData
Point data for
HistogramData.- Since:
- 1.14.0
-
Method Summary
Modifier and TypeMethodDescriptionThe bucket boundaries.longgetCount()The number of measurements taken.The counts in each bucket.List of exemplars collected from measurements that were used to form the data point.doublegetMax()The max of all measurements recorded, ifhasMax()istrue.doublegetMin()The min of all measurements recorded, ifhasMin()istrue.doublegetSum()The sum of all measurements recorded.booleanhasMax()ReturntrueifgetMax()is set.booleanhasMin()ReturntrueifgetMin()is set.Methods inherited from interface PointData
getAttributes, getEpochNanos, getStartEpochNanos
-
Method Details
-
getSum
double getSum()The sum of all measurements recorded.- Returns:
- the sum of recorded measurements.
-
getCount
long getCount()The number of measurements taken.- Returns:
- the count of recorded measurements.
-
hasMin
boolean hasMin()ReturntrueifgetMin()is set. -
getMin
-
hasMax
boolean hasMax()ReturntrueifgetMax()is set. -
getMax
-
getBoundaries
-
getCounts
-
getExemplars
List<DoubleExemplarData> getExemplars()List of exemplars collected from measurements that were used to form the data point.- Specified by:
getExemplarsin interfacePointData
-