Uses of Interface
io.opentelemetry.sdk.metrics.data.LongPointData
Packages that use LongPointData
Package
Description
Classes which form the in-memory representation of the OpenTelemetry metrics data model.
Metric aggregators.
The data format to model metrics for export.
-
Uses of LongPointData in io.opentelemetry.sdk.metrics.data
Methods in io.opentelemetry.sdk.metrics.data that return types with arguments of type LongPointDataModifier and TypeMethodDescriptiondefault GaugeData<LongPointData> MetricData.getLongGaugeData()default SumData<LongPointData> MetricData.getLongSumData() -
Uses of LongPointData in io.opentelemetry.sdk.metrics.internal.aggregator
Subclasses with type arguments of type LongPointData in io.opentelemetry.sdk.metrics.internal.aggregatorModifier and TypeClassDescription(package private) static final classfinal classSum aggregator that keeps values aslongs.(package private) static final classClasses in io.opentelemetry.sdk.metrics.internal.aggregator that implement interfaces with type arguments of type LongPointDataModifier and TypeClassDescriptionfinal classAggregator that aggregates recorded values by storing the last recorded value.Methods in io.opentelemetry.sdk.metrics.internal.aggregator that return LongPointDataModifier and TypeMethodDescriptionLongLastValueAggregator.createReusablePoint()LongSumAggregator.createReusablePoint()LongLastValueAggregator.diff(LongPointData previous, LongPointData current) LongSumAggregator.diff(LongPointData previousPoint, LongPointData currentPoint) protected LongPointDataLongLastValueAggregator.Handle.doAggregateThenMaybeReset(long startEpochNanos, long epochNanos, Attributes attributes, List<LongExemplarData> exemplars, boolean reset) protected LongPointDataLongSumAggregator.Handle.doAggregateThenMaybeReset(long startEpochNanos, long epochNanos, Attributes attributes, List<LongExemplarData> exemplars, boolean reset) LongLastValueAggregator.toPoint(Measurement measurement) LongSumAggregator.toPoint(Measurement measurement) Methods in io.opentelemetry.sdk.metrics.internal.aggregator that return types with arguments of type LongPointDataModifier and TypeMethodDescriptionLongLastValueAggregator.createHandle()LongSumAggregator.createHandle()Methods in io.opentelemetry.sdk.metrics.internal.aggregator with parameters of type LongPointDataModifier and TypeMethodDescriptionvoidLongLastValueAggregator.copyPoint(LongPointData point, LongPointData toReusablePoint) voidLongSumAggregator.copyPoint(LongPointData point, LongPointData toReusablePoint) LongLastValueAggregator.diff(LongPointData previous, LongPointData current) LongSumAggregator.diff(LongPointData previousPoint, LongPointData currentPoint) voidLongLastValueAggregator.diffInPlace(LongPointData previousReusablePoint, LongPointData currentPoint) voidLongSumAggregator.diffInPlace(LongPointData previousReusablePoint, LongPointData currentPoint) voidLongLastValueAggregator.toPoint(Measurement measurement, LongPointData reusablePoint) voidLongSumAggregator.toPoint(Measurement measurement, LongPointData reusablePoint) Method parameters in io.opentelemetry.sdk.metrics.internal.aggregator with type arguments of type LongPointDataModifier and TypeMethodDescriptionLongLastValueAggregator.toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor descriptor, Collection<LongPointData> points, AggregationTemporality temporality) LongSumAggregator.toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor descriptor, Collection<LongPointData> points, AggregationTemporality temporality) -
Uses of LongPointData in io.opentelemetry.sdk.metrics.internal.data
Classes in io.opentelemetry.sdk.metrics.internal.data that implement LongPointDataModifier and TypeClassDescription(package private) final classclassLongPoint is a single data point in a timeseries that describes the time-varying values of a int64 metric.classMutableLongPointDataMethods in io.opentelemetry.sdk.metrics.internal.data that return LongPointDataModifier and TypeMethodDescriptionstatic LongPointDataImmutableLongPointData.create(long startEpochNanos, long epochNanos, Attributes attributes, long value) Creates aImmutableLongPointData.static LongPointDataImmutableLongPointData.create(long startEpochNanos, long epochNanos, Attributes attributes, long value, List<LongExemplarData> exemplars) Creates aImmutableLongPointData.Methods in io.opentelemetry.sdk.metrics.internal.data with parameters of type LongPointDataModifier and TypeMethodDescriptionvoidMutableLongPointData.set(LongPointData point) Sets allMutableDoublePointDatabased onpoint.Method parameters in io.opentelemetry.sdk.metrics.internal.data with type arguments of type LongPointDataModifier and TypeMethodDescriptionstatic MetricDataImmutableMetricData.createLongGauge(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, String name, String description, String unit, GaugeData<LongPointData> data) Returns a new MetricData with aMetricDataType.LONG_GAUGEtype.static MetricDataImmutableMetricData.createLongSum(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, String name, String description, String unit, SumData<LongPointData> data) Returns a new MetricData with aMetricDataType.LONG_SUMtype.