Uses of Interface
io.opentelemetry.sdk.metrics.data.ExponentialHistogramPointData
Packages that use ExponentialHistogramPointData
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 ExponentialHistogramPointData in io.opentelemetry.sdk.metrics.data
Subinterfaces with type arguments of type ExponentialHistogramPointData in io.opentelemetry.sdk.metrics.dataModifier and TypeInterfaceDescriptioninterfaceA base-2 exponential histogram metric point, as defined by the OpenTelemetry Exponential Histogram specification.Methods in io.opentelemetry.sdk.metrics.data that return types with arguments of type ExponentialHistogramPointDataModifier and TypeMethodDescriptionExponentialHistogramData.getPoints()Returns the collection ofExponentialHistogramPointDatafor this histogram. -
Uses of ExponentialHistogramPointData in io.opentelemetry.sdk.metrics.internal.aggregator
Classes in io.opentelemetry.sdk.metrics.internal.aggregator that implement interfaces with type arguments of type ExponentialHistogramPointDataModifier and TypeClassDescriptionfinal classAggregator that generates base2 exponential histograms.Methods in io.opentelemetry.sdk.metrics.internal.aggregator that return types with arguments of type ExponentialHistogramPointDataMethod parameters in io.opentelemetry.sdk.metrics.internal.aggregator with type arguments of type ExponentialHistogramPointDataModifier and TypeMethodDescriptionDoubleBase2ExponentialHistogramAggregator.toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor metricDescriptor, Collection<ExponentialHistogramPointData> points, AggregationTemporality temporality) -
Uses of ExponentialHistogramPointData in io.opentelemetry.sdk.metrics.internal.data
Classes in io.opentelemetry.sdk.metrics.internal.data that implement ExponentialHistogramPointDataModifier and TypeClassDescriptionclassAuto value implementation ofExponentialHistogramPointData.final classA mutableExponentialHistogramPointDataMethods in io.opentelemetry.sdk.metrics.internal.data that return ExponentialHistogramPointDataModifier and TypeMethodDescriptionImmutableExponentialHistogramPointData.create(int scale, double sum, long zeroCount, boolean hasMin, double min, boolean hasMax, double max, ExponentialHistogramBuckets positiveBuckets, ExponentialHistogramBuckets negativeBuckets, long startEpochNanos, long epochNanos, Attributes attributes, List<DoubleExemplarData> exemplars) Create a DoubleExponentialHistogramPointData.MutableExponentialHistogramPointData.set(int scale, double sum, long zeroCount, boolean hasMin, double min, boolean hasMax, double max, ExponentialHistogramBuckets positiveBuckets, ExponentialHistogramBuckets negativeBuckets, long startEpochNanos, long epochNanos, Attributes attributes, List<DoubleExemplarData> exemplars) Method parameters in io.opentelemetry.sdk.metrics.internal.data with type arguments of type ExponentialHistogramPointDataModifier and TypeMethodDescriptionstatic ExponentialHistogramDataImmutableExponentialHistogramData.create(AggregationTemporality temporality, Collection<ExponentialHistogramPointData> points) Returns a newExponentialHistogramData.