Uses of Interface
io.opentelemetry.sdk.metrics.data.ValueAtQuantile
-
Packages that use ValueAtQuantile 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.data 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 ValueAtQuantile Modifier and Type Method Description private 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 ValueAtQuantile Modifier and Type Method Description (package private) static ValueAtQuantileMarshaler[]
ValueAtQuantileMarshaler. createRepeated(java.util.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 ValueAtQuantile Modifier and Type Method Description java.util.List<ValueAtQuantile>
SummaryPointData. 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 ValueAtQuantile Modifier and Type Class Description (package private) class
AutoValue_ImmutableValueAtQuantile
class
ImmutableValueAtQuantile
A summary metric value.Fields in io.opentelemetry.sdk.metrics.internal.data with type parameters of type ValueAtQuantile Modifier and Type Field Description private java.util.List<ValueAtQuantile>
AutoValue_ImmutableSummaryPointData. values
Methods in io.opentelemetry.sdk.metrics.internal.data that return ValueAtQuantile Modifier and Type Method Description static ValueAtQuantile
ImmutableValueAtQuantile. create(double quantile, double value)
Methods in io.opentelemetry.sdk.metrics.internal.data that return types with arguments of type ValueAtQuantile Modifier and Type Method Description java.util.List<ValueAtQuantile>
AutoValue_ImmutableSummaryPointData. getValues()
Method parameters in io.opentelemetry.sdk.metrics.internal.data with type arguments of type ValueAtQuantile Modifier and Type Method Description static ImmutableSummaryPointData
ImmutableSummaryPointData. create(long startEpochNanos, long epochNanos, Attributes attributes, long count, double sum, java.util.List<ValueAtQuantile> percentileValues)
Creates aSummaryPointData
.
-