Class ImmutableExponentialHistogramPointData
- java.lang.Object
-
- io.opentelemetry.sdk.metrics.internal.data.ImmutableExponentialHistogramPointData
-
- All Implemented Interfaces:
ExponentialHistogramPointData
,PointData
- Direct Known Subclasses:
AutoValue_ImmutableExponentialHistogramPointData
@Immutable public abstract class ImmutableExponentialHistogramPointData extends java.lang.Object implements ExponentialHistogramPointData
Auto value implementation ofExponentialHistogramPointData
.This class is internal and is hence not for public use. Its APIs are unstable and can change at any time.
-
-
Constructor Summary
Constructors Constructor Description ImmutableExponentialHistogramPointData()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExponentialHistogramPointData
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.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.opentelemetry.sdk.metrics.data.ExponentialHistogramPointData
getCount, getExemplars, getMax, getMin, getNegativeBuckets, getPositiveBuckets, getScale, getSum, getZeroCount, hasMax, hasMin
-
Methods inherited from interface io.opentelemetry.sdk.metrics.data.PointData
getAttributes, getEpochNanos, getStartEpochNanos
-
-
-
-
Method Detail
-
create
public static ExponentialHistogramPointData 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.- Returns:
- a DoubleExponentialHistogramPointData.
-
-