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 ExponentialHistogramBucketsMarshaler
ExponentialHistogramBucketsMarshaler. create(ExponentialHistogramBuckets buckets)
int
ExponentialHistogramBucketsStatelessMarshaler. getBinarySerializedSize(ExponentialHistogramBuckets buckets, MarshalerContext context)
void
ExponentialHistogramBucketsStatelessMarshaler. 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 ExponentialHistogramBuckets
ExponentialHistogramPointData. getNegativeBuckets()
Return theExponentialHistogramBuckets
representing the negative measurements taken for this histogram.ExponentialHistogramBuckets
ExponentialHistogramPointData. getPositiveBuckets()
Return theExponentialHistogramBuckets
representing 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) class
DoubleBase2ExponentialHistogramBuckets
This 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 ExponentialHistogramBuckets
DoubleBase2ExponentialHistogramAggregator.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 ExponentialHistogramBuckets
DoubleBase2ExponentialHistogramAggregator.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) class
AutoValue_EmptyExponentialHistogramBuckets
(package private) class
AutoValue_ImmutableExponentialHistogramBuckets
class
EmptyExponentialHistogramBuckets
An emptyExponentialHistogramBuckets
class
ImmutableExponentialHistogramBuckets
Auto value implementation ofExponentialHistogramBuckets
.class
MutableExponentialHistogramBuckets
A mutableExponentialHistogramBuckets
Fields in io.opentelemetry.sdk.metrics.internal.data declared as ExponentialHistogramBuckets Modifier and Type Field Description private ExponentialHistogramBuckets
AutoValue_ImmutableExponentialHistogramPointData. getNegativeBuckets
private ExponentialHistogramBuckets
AutoValue_ImmutableExponentialHistogramPointData. getPositiveBuckets
private ExponentialHistogramBuckets
MutableExponentialHistogramPointData. negativeBuckets
private ExponentialHistogramBuckets
MutableExponentialHistogramPointData. positiveBuckets
Fields 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_BUCKETS
Methods in io.opentelemetry.sdk.metrics.internal.data that return ExponentialHistogramBuckets Modifier and Type Method Description static ExponentialHistogramBuckets
ImmutableExponentialHistogramBuckets. create(int scale, int offset, java.util.List<java.lang.Long> bucketCounts)
Create a ExponentialHistogramBuckets.static ExponentialHistogramBuckets
EmptyExponentialHistogramBuckets. get(int scale)
ExponentialHistogramBuckets
AutoValue_ImmutableExponentialHistogramPointData. getNegativeBuckets()
ExponentialHistogramBuckets
MutableExponentialHistogramPointData. getNegativeBuckets()
ExponentialHistogramBuckets
AutoValue_ImmutableExponentialHistogramPointData. getPositiveBuckets()
ExponentialHistogramBuckets
MutableExponentialHistogramPointData. getPositiveBuckets()
Methods in io.opentelemetry.sdk.metrics.internal.data with parameters of type ExponentialHistogramBuckets Modifier and Type Method Description static ExponentialHistogramPointData
ImmutableExponentialHistogramPointData. 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.ExponentialHistogramPointData
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, 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)
-