Uses of Interface
io.opentelemetry.sdk.metrics.data.ValueAtQuantile
Packages that use ValueAtQuantile
Package
Description
Marshaling of OTLP metrics.
Classes which form the in-memory representation of the OpenTelemetry metrics data model.
The data format to model metrics for export.
-
Uses of ValueAtQuantile in io.opentelemetry.exporter.internal.otlp.metrics
Methods in io.opentelemetry.exporter.internal.otlp.metrics with parameters of type ValueAtQuantileModifier and TypeMethodDescriptionprivate static ValueAtQuantileMarshaler
ValueAtQuantileMarshaler.create
(ValueAtQuantile value) int
ValueAtQuantileStatelessMarshaler.getBinarySerializedSize
(ValueAtQuantile value, MarshalerContext context) void
ValueAtQuantileStatelessMarshaler.writeTo
(Serializer output, ValueAtQuantile value, MarshalerContext context) Method parameters in io.opentelemetry.exporter.internal.otlp.metrics with type arguments of type ValueAtQuantileModifier and TypeMethodDescription(package private) static ValueAtQuantileMarshaler[]
ValueAtQuantileMarshaler.createRepeated
(List<ValueAtQuantile> values) -
Uses of ValueAtQuantile in io.opentelemetry.sdk.metrics.data
Methods in io.opentelemetry.sdk.metrics.data that return types with arguments of type ValueAtQuantileModifier and TypeMethodDescriptionSummaryPointData.getValues()
Returns the list of values at different quantiles in the distribution of measurements. -
Uses of ValueAtQuantile in io.opentelemetry.sdk.metrics.internal.data
Classes in io.opentelemetry.sdk.metrics.internal.data that implement ValueAtQuantileModifier and TypeClassDescription(package private) final class
class
A summary metric value.Fields in io.opentelemetry.sdk.metrics.internal.data with type parameters of type ValueAtQuantileModifier and TypeFieldDescriptionprivate final List
<ValueAtQuantile> AutoValue_ImmutableSummaryPointData.values
Methods in io.opentelemetry.sdk.metrics.internal.data that return ValueAtQuantileModifier and TypeMethodDescriptionstatic ValueAtQuantile
ImmutableValueAtQuantile.create
(double quantile, double value) Methods in io.opentelemetry.sdk.metrics.internal.data that return types with arguments of type ValueAtQuantileMethod parameters in io.opentelemetry.sdk.metrics.internal.data with type arguments of type ValueAtQuantileModifier and TypeMethodDescriptionstatic ImmutableSummaryPointData
ImmutableSummaryPointData.create
(long startEpochNanos, long epochNanos, Attributes attributes, long count, double sum, List<ValueAtQuantile> percentileValues) Creates aSummaryPointData
.