Interface GaugeData<T extends PointData>
-
- All Known Implementing Classes:
DoubleGaugeData,LongGaugeData
@Immutable public interface GaugeData<T extends PointData>A gauge metric point.See: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/datamodel.md#gauge
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<T>getPoints()Returns the dataPointDatas for this metric.
-
-
-
Method Detail
-
getPoints
Collection<T> getPoints()
Returns the dataPointDatas for this metric.- Returns:
- the data
PointDatas for this metric, or emptyCollectionif no points.
-
-