Class DoublePointData

  • All Implemented Interfaces:
    PointData

    @Immutable
    public abstract class DoublePointData
    extends Object
    implements PointData
    DoublePoint is a single data point in a timeseries that describes the time-varying value of a double metric.
    • Method Detail

      • create

        public static DoublePointData create​(long startEpochNanos,
                                             long epochNanos,
                                             io.opentelemetry.api.metrics.common.Labels labels,
                                             double value)
      • getValue

        public abstract double getValue()
        Returns the value of the data point.
        Returns:
        the value of the data point.