Uses of Class
io.opentelemetry.sdk.metrics.internal.descriptor.MetricDescriptor
-
Packages that use MetricDescriptor Package Description io.opentelemetry.sdk.metrics.internal.aggregator Metric aggregators.io.opentelemetry.sdk.metrics.internal.descriptor io.opentelemetry.sdk.metrics.internal.state -
-
Uses of MetricDescriptor in io.opentelemetry.sdk.metrics.internal.aggregator
Methods in io.opentelemetry.sdk.metrics.internal.aggregator with parameters of type MetricDescriptor Modifier and Type Method Description MetricData
Aggregator. toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor metricDescriptor, java.util.Collection<T> points, AggregationTemporality temporality)
Returns theMetricData
that thisAggregation
will produce.MetricData
DoubleBase2ExponentialHistogramAggregator. toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor metricDescriptor, java.util.Collection<ExponentialHistogramPointData> points, AggregationTemporality temporality)
MetricData
DoubleExplicitBucketHistogramAggregator. toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor metricDescriptor, java.util.Collection<HistogramPointData> pointData, AggregationTemporality temporality)
MetricData
DoubleLastValueAggregator. toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor descriptor, java.util.Collection<DoublePointData> points, AggregationTemporality temporality)
MetricData
DoubleSumAggregator. toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor descriptor, java.util.Collection<DoublePointData> points, AggregationTemporality temporality)
MetricData
DropAggregator. toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor metricDescriptor, java.util.Collection<PointData> points, AggregationTemporality temporality)
MetricData
LongLastValueAggregator. toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor descriptor, java.util.Collection<LongPointData> points, AggregationTemporality temporality)
MetricData
LongSumAggregator. toMetricData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, MetricDescriptor descriptor, java.util.Collection<LongPointData> points, AggregationTemporality temporality)
-
Uses of MetricDescriptor in io.opentelemetry.sdk.metrics.internal.descriptor
Subclasses of MetricDescriptor in io.opentelemetry.sdk.metrics.internal.descriptor Modifier and Type Class Description (package private) class
AutoValue_MetricDescriptor
Methods in io.opentelemetry.sdk.metrics.internal.descriptor that return MetricDescriptor Modifier and Type Method Description static MetricDescriptor
MetricDescriptor. create(View view, SourceInfo viewSourceInfo, InstrumentDescriptor instrument)
Constructs a metric descriptor for a given View + instrument.static MetricDescriptor
MetricDescriptor. create(java.lang.String name, java.lang.String description, java.lang.String unit)
Constructs a metric descriptor with no instrument and default view. -
Uses of MetricDescriptor in io.opentelemetry.sdk.metrics.internal.state
Fields in io.opentelemetry.sdk.metrics.internal.state declared as MetricDescriptor Modifier and Type Field Description private MetricDescriptor
EmptyMetricStorage. descriptor
private MetricDescriptor
AsynchronousMetricStorage. metricDescriptor
private MetricDescriptor
DefaultSynchronousMetricStorage. metricDescriptor
Fields in io.opentelemetry.sdk.metrics.internal.state with type parameters of type MetricDescriptor Modifier and Type Field Description private java.util.Map<MetricDescriptor,MetricStorage>
MetricStorageRegistry. registry
Methods in io.opentelemetry.sdk.metrics.internal.state that return MetricDescriptor Modifier and Type Method Description MetricDescriptor
AsynchronousMetricStorage. getMetricDescriptor()
MetricDescriptor
DefaultSynchronousMetricStorage. getMetricDescriptor()
MetricDescriptor
EmptyMetricStorage. getMetricDescriptor()
MetricDescriptor
MetricStorage. getMetricDescriptor()
Returns a description of the metric produced in this storage.Methods in io.opentelemetry.sdk.metrics.internal.state with parameters of type MetricDescriptor Modifier and Type Method Description static java.lang.String
DebugUtils. duplicateMetricErrorMessage(MetricDescriptor existing, MetricDescriptor conflict)
Creates a detailed error message comparing twoMetricDescriptor
s.Constructors in io.opentelemetry.sdk.metrics.internal.state with parameters of type MetricDescriptor Constructor Description AsynchronousMetricStorage(RegisteredReader registeredReader, MetricDescriptor metricDescriptor, Aggregator<T,U> aggregator, AttributesProcessor attributesProcessor, int maxCardinality)
DefaultSynchronousMetricStorage(RegisteredReader registeredReader, MetricDescriptor metricDescriptor, Aggregator<T,U> aggregator, AttributesProcessor attributesProcessor, int maxCardinality)
-