Uses of Interface
io.opentelemetry.sdk.metrics.data.ExponentialHistogramBuckets
-
Packages that use ExponentialHistogramBuckets Package Description io.opentelemetry.exporter.internal.otlp.metrics Marshaling of OTLP metrics.io.opentelemetry.sdk.metrics.data Classes which form the in-memory representation of the OpenTelemetry metrics data model.io.opentelemetry.sdk.metrics.internal.aggregator Metric aggregators.io.opentelemetry.sdk.metrics.internal.data The data format to model metrics for export. -
-
Uses of ExponentialHistogramBuckets in io.opentelemetry.exporter.internal.otlp.metrics
Methods in io.opentelemetry.exporter.internal.otlp.metrics with parameters of type ExponentialHistogramBuckets Modifier and Type Method Description (package private) static ExponentialHistogramBucketsMarshalerExponentialHistogramBucketsMarshaler. create(ExponentialHistogramBuckets buckets)intExponentialHistogramBucketsStatelessMarshaler. getBinarySerializedSize(ExponentialHistogramBuckets buckets, MarshalerContext context)voidExponentialHistogramBucketsStatelessMarshaler. writeTo(Serializer output, ExponentialHistogramBuckets buckets, MarshalerContext context) -
Uses of ExponentialHistogramBuckets in io.opentelemetry.sdk.metrics.data
Methods in io.opentelemetry.sdk.metrics.data that return ExponentialHistogramBuckets Modifier and Type Method Description ExponentialHistogramBucketsExponentialHistogramPointData. getNegativeBuckets()Return theExponentialHistogramBucketsrepresenting the negative measurements taken for this histogram.ExponentialHistogramBucketsExponentialHistogramPointData. getPositiveBuckets()Return theExponentialHistogramBucketsrepresenting the positive measurements taken for this histogram. -
Uses of ExponentialHistogramBuckets in io.opentelemetry.sdk.metrics.internal.aggregator
Classes in io.opentelemetry.sdk.metrics.internal.aggregator that implement ExponentialHistogramBuckets Modifier and Type Class Description (package private) classDoubleBase2ExponentialHistogramBucketsThis class handles the operations for recording, scaling, and exposing data related to the base2 exponential histogram.Methods in io.opentelemetry.sdk.metrics.internal.aggregator that return ExponentialHistogramBuckets Modifier and Type Method Description private ExponentialHistogramBucketsDoubleBase2ExponentialHistogramAggregator.Handle. resolveBuckets(DoubleBase2ExponentialHistogramBuckets buckets, int scale, boolean reset, ExponentialHistogramBuckets reusableBuckets)Methods in io.opentelemetry.sdk.metrics.internal.aggregator with parameters of type ExponentialHistogramBuckets Modifier and Type Method Description private ExponentialHistogramBucketsDoubleBase2ExponentialHistogramAggregator.Handle. resolveBuckets(DoubleBase2ExponentialHistogramBuckets buckets, int scale, boolean reset, ExponentialHistogramBuckets reusableBuckets) -
Uses of ExponentialHistogramBuckets in io.opentelemetry.sdk.metrics.internal.data
Classes in io.opentelemetry.sdk.metrics.internal.data that implement ExponentialHistogramBuckets Modifier and Type Class Description (package private) classAutoValue_EmptyExponentialHistogramBuckets(package private) classAutoValue_ImmutableExponentialHistogramBucketsclassEmptyExponentialHistogramBucketsAn emptyExponentialHistogramBucketsclassImmutableExponentialHistogramBucketsAuto value implementation ofExponentialHistogramBuckets.classMutableExponentialHistogramBucketsA mutableExponentialHistogramBucketsFields in io.opentelemetry.sdk.metrics.internal.data declared as ExponentialHistogramBuckets Modifier and Type Field Description private ExponentialHistogramBucketsAutoValue_ImmutableExponentialHistogramPointData. getNegativeBucketsprivate ExponentialHistogramBucketsAutoValue_ImmutableExponentialHistogramPointData. getPositiveBucketsprivate ExponentialHistogramBucketsMutableExponentialHistogramPointData. negativeBucketsprivate ExponentialHistogramBucketsMutableExponentialHistogramPointData. positiveBucketsFields in io.opentelemetry.sdk.metrics.internal.data with type parameters of type ExponentialHistogramBuckets Modifier and Type Field Description private static java.util.Map<java.lang.Integer,ExponentialHistogramBuckets>EmptyExponentialHistogramBuckets. ZERO_BUCKETSMethods in io.opentelemetry.sdk.metrics.internal.data that return ExponentialHistogramBuckets Modifier and Type Method Description static ExponentialHistogramBucketsImmutableExponentialHistogramBuckets. create(int scale, int offset, java.util.List<java.lang.Long> bucketCounts)Create a ExponentialHistogramBuckets.static ExponentialHistogramBucketsEmptyExponentialHistogramBuckets. get(int scale)ExponentialHistogramBucketsAutoValue_ImmutableExponentialHistogramPointData. getNegativeBuckets()ExponentialHistogramBucketsMutableExponentialHistogramPointData. getNegativeBuckets()ExponentialHistogramBucketsAutoValue_ImmutableExponentialHistogramPointData. getPositiveBuckets()ExponentialHistogramBucketsMutableExponentialHistogramPointData. getPositiveBuckets()Methods in io.opentelemetry.sdk.metrics.internal.data with parameters of type ExponentialHistogramBuckets Modifier and Type Method Description static ExponentialHistogramPointDataImmutableExponentialHistogramPointData. 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, java.util.List<DoubleExemplarData> exemplars)Create a DoubleExponentialHistogramPointData.ExponentialHistogramPointDataMutableExponentialHistogramPointData. 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, java.util.List<DoubleExemplarData> exemplars)Constructors in io.opentelemetry.sdk.metrics.internal.data with parameters of type ExponentialHistogramBuckets Constructor Description AutoValue_ImmutableExponentialHistogramPointData(long getStartEpochNanos, long getEpochNanos, Attributes getAttributes, int getScale, double getSum, long getCount, long getZeroCount, boolean hasMin, double getMin, boolean hasMax, double getMax, ExponentialHistogramBuckets getPositiveBuckets, ExponentialHistogramBuckets getNegativeBuckets, java.util.List<DoubleExemplarData> getExemplars)
-