Uses of Interface
io.opentelemetry.sdk.metrics.data.SummaryPointData
-
Packages that use SummaryPointData Package Description io.opentelemetry.exporter.internal.otlp.metrics Marshaling of OTLP metrics.io.opentelemetry.sdk.metrics.internal.data The data format to model metrics for export. -
-
Uses of SummaryPointData in io.opentelemetry.exporter.internal.otlp.metrics
Methods in io.opentelemetry.exporter.internal.otlp.metrics with parameters of type SummaryPointData Modifier and Type Method Description (package private) static SummaryDataPointMarshaler
SummaryDataPointMarshaler. create(SummaryPointData point)
int
SummaryDataPointStatelessMarshaler. getBinarySerializedSize(SummaryPointData point, MarshalerContext context)
void
SummaryDataPointStatelessMarshaler. writeTo(Serializer output, SummaryPointData point, MarshalerContext context)
Method parameters in io.opentelemetry.exporter.internal.otlp.metrics with type arguments of type SummaryPointData Modifier and Type Method Description (package private) static SummaryDataPointMarshaler[]
SummaryDataPointMarshaler. createRepeated(java.util.Collection<SummaryPointData> points)
-
Uses of SummaryPointData in io.opentelemetry.sdk.metrics.internal.data
Classes in io.opentelemetry.sdk.metrics.internal.data that implement SummaryPointData Modifier and Type Class Description (package private) class
AutoValue_ImmutableSummaryPointData
class
ImmutableSummaryPointData
A single data point that summarizes the values in a time series of numeric values.Fields in io.opentelemetry.sdk.metrics.internal.data with type parameters of type SummaryPointData Modifier and Type Field Description private java.util.Collection<SummaryPointData>
AutoValue_ImmutableSummaryData. points
Methods in io.opentelemetry.sdk.metrics.internal.data that return types with arguments of type SummaryPointData Modifier and Type Method Description java.util.Collection<SummaryPointData>
AutoValue_ImmutableSummaryData. getPoints()
Method parameters in io.opentelemetry.sdk.metrics.internal.data with type arguments of type SummaryPointData Modifier and Type Method Description static ImmutableSummaryData
ImmutableSummaryData. create(java.util.Collection<SummaryPointData> points)
Constructor parameters in io.opentelemetry.sdk.metrics.internal.data with type arguments of type SummaryPointData Constructor Description AutoValue_ImmutableSummaryData(java.util.Collection<SummaryPointData> points)
-