Uses of Interface
io.opentelemetry.sdk.metrics.export.MetricExporter
-
Packages that use MetricExporter Package Description io.opentelemetry.exporter.otlp.http.metrics OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP HTTP.io.opentelemetry.exporter.otlp.internal io.opentelemetry.exporter.otlp.metrics OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP gRPC.io.opentelemetry.sdk.autoconfigure io.opentelemetry.sdk.autoconfigure.spi Java SPI (Service Provider Interface) for implementing extensions to SDK autoconfiguration.io.opentelemetry.sdk.autoconfigure.spi.metrics Java SPI (Service Provider Interface) for implementing extensions to SDK autoconfiguration of metrics.io.opentelemetry.sdk.metrics.export Utilities that facilitate exporting metrics out ofSdkMeterProvider
. -
-
Uses of MetricExporter in io.opentelemetry.exporter.otlp.http.metrics
Classes in io.opentelemetry.exporter.otlp.http.metrics that implement MetricExporter Modifier and Type Class Description class
OtlpHttpMetricExporter
Exports metrics using OTLP via HTTP, using OpenTelemetry's protobuf model. -
Uses of MetricExporter in io.opentelemetry.exporter.otlp.internal
Methods in io.opentelemetry.exporter.otlp.internal that return MetricExporter Modifier and Type Method Description MetricExporter
OtlpMetricExporterComponentProvider. create(StructuredConfigProperties config)
MetricExporter
OtlpMetricExporterProvider. createExporter(ConfigProperties config)
Methods in io.opentelemetry.exporter.otlp.internal that return types with arguments of type MetricExporter Modifier and Type Method Description java.lang.Class<MetricExporter>
OtlpMetricExporterComponentProvider. getType()
-
Uses of MetricExporter in io.opentelemetry.exporter.otlp.metrics
Classes in io.opentelemetry.exporter.otlp.metrics that implement MetricExporter Modifier and Type Class Description class
OtlpGrpcMetricExporter
Exports metrics using OTLP via gRPC, using OpenTelemetry's protobuf model. -
Uses of MetricExporter in io.opentelemetry.sdk.autoconfigure
Fields in io.opentelemetry.sdk.autoconfigure with type parameters of type MetricExporter Modifier and Type Field Description private java.util.function.BiFunction<? super MetricExporter,ConfigProperties,? extends MetricExporter>
AutoConfiguredOpenTelemetrySdkBuilder. metricExporterCustomizer
private java.util.function.BiFunction<? super MetricExporter,ConfigProperties,? extends MetricExporter>
AutoConfiguredOpenTelemetrySdkBuilder. metricExporterCustomizer
Methods in io.opentelemetry.sdk.autoconfigure that return MetricExporter Modifier and Type Method Description (package private) static MetricExporter
MetricExporterConfiguration. configureExporter(java.lang.String name, NamedSpiManager<MetricExporter> spiExportersManager)
Methods in io.opentelemetry.sdk.autoconfigure that return types with arguments of type MetricExporter Modifier and Type Method Description (package private) static NamedSpiManager<MetricExporter>
MetricExporterConfiguration. metricExporterSpiManager(ConfigProperties config, SpiHelper spiHelper)
Method parameters in io.opentelemetry.sdk.autoconfigure with type arguments of type MetricExporter Modifier and Type Method Description AutoConfiguredOpenTelemetrySdkBuilder
AutoConfiguredOpenTelemetrySdkBuilder. addMetricExporterCustomizer(java.util.function.BiFunction<? super MetricExporter,ConfigProperties,? extends MetricExporter> metricExporterCustomizer)
Adds aBiFunction
to invoke with the default autoconfiguredSpanExporter
to allow customization.AutoConfiguredOpenTelemetrySdkBuilder
AutoConfiguredOpenTelemetrySdkBuilder. addMetricExporterCustomizer(java.util.function.BiFunction<? super MetricExporter,ConfigProperties,? extends MetricExporter> metricExporterCustomizer)
Adds aBiFunction
to invoke with the default autoconfiguredSpanExporter
to allow customization.(package private) static MetricExporter
MetricExporterConfiguration. configureExporter(java.lang.String name, NamedSpiManager<MetricExporter> spiExportersManager)
-
Uses of MetricExporter in io.opentelemetry.sdk.autoconfigure.spi
Method parameters in io.opentelemetry.sdk.autoconfigure.spi with type arguments of type MetricExporter Modifier and Type Method Description default AutoConfigurationCustomizer
AutoConfigurationCustomizer. addMetricExporterCustomizer(java.util.function.BiFunction<? super MetricExporter,ConfigProperties,? extends MetricExporter> exporterCustomizer)
Adds aBiFunction
to invoke with the default autoconfiguredMetricExporter
to allow customization.default AutoConfigurationCustomizer
AutoConfigurationCustomizer. addMetricExporterCustomizer(java.util.function.BiFunction<? super MetricExporter,ConfigProperties,? extends MetricExporter> exporterCustomizer)
Adds aBiFunction
to invoke with the default autoconfiguredMetricExporter
to allow customization. -
Uses of MetricExporter in io.opentelemetry.sdk.autoconfigure.spi.metrics
Methods in io.opentelemetry.sdk.autoconfigure.spi.metrics that return MetricExporter Modifier and Type Method Description MetricExporter
ConfigurableMetricExporterProvider. createExporter(ConfigProperties config)
Returns aMetricExporter
that can be registered to OpenTelemetry by providing the property value specified byConfigurableMetricExporterProvider.getName()
. -
Uses of MetricExporter in io.opentelemetry.sdk.metrics.export
Fields in io.opentelemetry.sdk.metrics.export declared as MetricExporter Modifier and Type Field Description private MetricExporter
PeriodicMetricReader. exporter
private MetricExporter
PeriodicMetricReaderBuilder. metricExporter
Methods in io.opentelemetry.sdk.metrics.export with parameters of type MetricExporter Modifier and Type Method Description static PeriodicMetricReaderBuilder
PeriodicMetricReader. builder(MetricExporter exporter)
Returns a newPeriodicMetricReaderBuilder
.static PeriodicMetricReader
PeriodicMetricReader. create(MetricExporter exporter)
Returns a newPeriodicMetricReader
which exports to theexporter
once every minute.Constructors in io.opentelemetry.sdk.metrics.export with parameters of type MetricExporter Constructor Description PeriodicMetricReader(MetricExporter exporter, long intervalNanos, java.util.concurrent.ScheduledExecutorService scheduler)
PeriodicMetricReaderBuilder(MetricExporter metricExporter)
-