Uses of Class
io.opentelemetry.sdk.metrics.InstrumentType
-
Packages that use InstrumentType Package Description io.opentelemetry.exporter.otlp.http.metrics OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP HTTP.io.opentelemetry.exporter.otlp.metrics OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP gRPC.io.opentelemetry.sdk.metrics The SDK implementation of metrics.io.opentelemetry.sdk.metrics.export Utilities that facilitate exporting metrics out ofSdkMeterProvider
.io.opentelemetry.sdk.metrics.internal.descriptor io.opentelemetry.sdk.metrics.internal.view View related internal classes. -
-
Uses of InstrumentType in io.opentelemetry.exporter.otlp.http.metrics
Methods in io.opentelemetry.exporter.otlp.http.metrics with parameters of type InstrumentType Modifier and Type Method Description AggregationTemporality
OtlpHttpMetricExporter. getAggregationTemporality(InstrumentType instrumentType)
Aggregation
OtlpHttpMetricExporter. getDefaultAggregation(InstrumentType instrumentType)
-
Uses of InstrumentType in io.opentelemetry.exporter.otlp.metrics
Methods in io.opentelemetry.exporter.otlp.metrics with parameters of type InstrumentType Modifier and Type Method Description AggregationTemporality
OtlpGrpcMetricExporter. getAggregationTemporality(InstrumentType instrumentType)
Aggregation
OtlpGrpcMetricExporter. getDefaultAggregation(InstrumentType instrumentType)
-
Uses of InstrumentType in io.opentelemetry.sdk.metrics
Fields in io.opentelemetry.sdk.metrics declared as InstrumentType Modifier and Type Field Description private InstrumentType
AutoValue_InstrumentSelector. instrumentType
private InstrumentType
InstrumentSelectorBuilder. instrumentType
private InstrumentType
InstrumentBuilder. type
Methods in io.opentelemetry.sdk.metrics that return InstrumentType Modifier and Type Method Description InstrumentType
AutoValue_InstrumentSelector. getInstrumentType()
abstract InstrumentType
InstrumentSelector. getInstrumentType()
Returns the selectedInstrumentType
, or null if this selects all instrument types.static InstrumentType
InstrumentType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InstrumentType[]
InstrumentType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.opentelemetry.sdk.metrics with parameters of type InstrumentType Modifier and Type Method Description (package private) SdkObservableInstrument
InstrumentBuilder. buildDoubleAsynchronousInstrument(InstrumentType type, java.util.function.Consumer<ObservableDoubleMeasurement> updater)
(package private) SdkObservableInstrument
InstrumentBuilder. buildLongAsynchronousInstrument(InstrumentType type, java.util.function.Consumer<ObservableLongMeasurement> updater)
(package private) SdkObservableMeasurement
InstrumentBuilder. buildObservableMeasurement(InstrumentType type)
(package private) static InstrumentSelector
InstrumentSelector. create(InstrumentType instrumentType, java.lang.String instrumentName, java.lang.String instrumentUnit, java.lang.String meterName, java.lang.String meterVersion, java.lang.String meterSchemaUrl)
InstrumentSelectorBuilder
InstrumentSelectorBuilder. setType(InstrumentType instrumentType)
Select instruments with the giveninstrumentType
.Constructors in io.opentelemetry.sdk.metrics with parameters of type InstrumentType Constructor Description AutoValue_InstrumentSelector(InstrumentType instrumentType, java.lang.String instrumentName, java.lang.String instrumentUnit, java.lang.String meterName, java.lang.String meterVersion, java.lang.String meterSchemaUrl)
InstrumentBuilder(java.lang.String name, InstrumentType type, InstrumentValueType valueType, SdkMeter sdkMeter)
-
Uses of InstrumentType in io.opentelemetry.sdk.metrics.export
Methods in io.opentelemetry.sdk.metrics.export with parameters of type InstrumentType Modifier and Type Method Description AggregationTemporality
AggregationTemporalitySelector. getAggregationTemporality(InstrumentType instrumentType)
Return the aggregation temporality for theInstrumentType
.AggregationTemporality
PeriodicMetricReader. getAggregationTemporality(InstrumentType instrumentType)
int
CardinalityLimitSelector. getCardinalityLimit(InstrumentType instrumentType)
Return the default cardinality limit for metrics from instruments of typeinstrumentType
.Aggregation
DefaultAggregationSelector. getDefaultAggregation(InstrumentType instrumentType)
Return the default aggregation for theInstrumentType
.default Aggregation
MetricExporter. getDefaultAggregation(InstrumentType instrumentType)
Return the default aggregation for theInstrumentType
.default Aggregation
MetricReader. getDefaultAggregation(InstrumentType instrumentType)
Return the default aggregation for theInstrumentType
.Aggregation
PeriodicMetricReader. getDefaultAggregation(InstrumentType instrumentType)
default DefaultAggregationSelector
DefaultAggregationSelector. with(InstrumentType instrumentType, Aggregation aggregation)
Returns a default aggregation selector which returns the givenaggregation
for the giveninstrumentType
, and defers to this for other instrument types. -
Uses of InstrumentType in io.opentelemetry.sdk.metrics.internal.descriptor
Fields in io.opentelemetry.sdk.metrics.internal.descriptor declared as InstrumentType Modifier and Type Field Description private InstrumentType
AutoValue_InstrumentDescriptor. type
Methods in io.opentelemetry.sdk.metrics.internal.descriptor that return InstrumentType Modifier and Type Method Description InstrumentType
AutoValue_InstrumentDescriptor. getType()
abstract InstrumentType
InstrumentDescriptor. getType()
Methods in io.opentelemetry.sdk.metrics.internal.descriptor with parameters of type InstrumentType Modifier and Type Method Description static InstrumentDescriptor
InstrumentDescriptor. create(java.lang.String name, java.lang.String description, java.lang.String unit, InstrumentType type, InstrumentValueType valueType, Advice advice)
Constructors in io.opentelemetry.sdk.metrics.internal.descriptor with parameters of type InstrumentType Constructor Description AutoValue_InstrumentDescriptor(java.lang.String name, java.lang.String description, java.lang.String unit, InstrumentType type, InstrumentValueType valueType, Advice advice)
-
Uses of InstrumentType in io.opentelemetry.sdk.metrics.internal.view
Fields in io.opentelemetry.sdk.metrics.internal.view with type parameters of type InstrumentType Modifier and Type Field Description private java.util.Map<InstrumentType,RegisteredView>
ViewRegistry. instrumentDefaultRegisteredView
-