Uses of Interface
io.opentelemetry.sdk.metrics.export.MetricExporter
Packages that use MetricExporter
Package
Description
OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP HTTP.
OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP gRPC.
Java SPI (Service Provider Interface) for implementing extensions to SDK autoconfiguration.
Java SPI (Service Provider Interface) for implementing extensions to SDK autoconfiguration of
metrics.
Utilities that facilitate exporting metrics out of
SdkMeterProvider
.-
Uses of MetricExporter in io.opentelemetry.exporter.otlp.http.metrics
Classes in io.opentelemetry.exporter.otlp.http.metrics that implement MetricExporterModifier and TypeClassDescriptionfinal class
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 MetricExporterModifier and TypeMethodDescriptionOtlpMetricExporterComponentProvider.create
(StructuredConfigProperties config) OtlpMetricExporterProvider.createExporter
(ConfigProperties config) Methods in io.opentelemetry.exporter.otlp.internal that return types with arguments of type MetricExporter -
Uses of MetricExporter in io.opentelemetry.exporter.otlp.metrics
Classes in io.opentelemetry.exporter.otlp.metrics that implement MetricExporterModifier and TypeClassDescriptionfinal class
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 MetricExporterModifier and TypeFieldDescriptionprivate BiFunction
<? super MetricExporter, ConfigProperties, ? extends MetricExporter> AutoConfiguredOpenTelemetrySdkBuilder.metricExporterCustomizer
private BiFunction
<? super MetricExporter, ConfigProperties, ? extends MetricExporter> AutoConfiguredOpenTelemetrySdkBuilder.metricExporterCustomizer
Methods in io.opentelemetry.sdk.autoconfigure that return MetricExporterModifier and TypeMethodDescription(package private) static MetricExporter
MetricExporterConfiguration.configureExporter
(String name, NamedSpiManager<MetricExporter> spiExportersManager) Methods in io.opentelemetry.sdk.autoconfigure that return types with arguments of type MetricExporterModifier and TypeMethodDescription(package private) static NamedSpiManager
<MetricExporter> MetricExporterConfiguration.metricExporterSpiManager
(ConfigProperties config, SpiHelper spiHelper) Method parameters in io.opentelemetry.sdk.autoconfigure with type arguments of type MetricExporterModifier and TypeMethodDescriptionAutoConfiguredOpenTelemetrySdkBuilder.addMetricExporterCustomizer
(BiFunction<? super MetricExporter, ConfigProperties, ? extends MetricExporter> metricExporterCustomizer) Adds aBiFunction
to invoke with the default autoconfiguredSpanExporter
to allow customization.AutoConfiguredOpenTelemetrySdkBuilder.addMetricExporterCustomizer
(BiFunction<? super MetricExporter, ConfigProperties, ? extends MetricExporter> metricExporterCustomizer) Adds aBiFunction
to invoke with the default autoconfiguredSpanExporter
to allow customization.(package private) static MetricExporter
MetricExporterConfiguration.configureExporter
(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 MetricExporterModifier and TypeMethodDescriptiondefault AutoConfigurationCustomizer
AutoConfigurationCustomizer.addMetricExporterCustomizer
(BiFunction<? super MetricExporter, ConfigProperties, ? extends MetricExporter> exporterCustomizer) Adds aBiFunction
to invoke with the default autoconfiguredMetricExporter
to allow customization.default AutoConfigurationCustomizer
AutoConfigurationCustomizer.addMetricExporterCustomizer
(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 MetricExporterModifier and TypeMethodDescriptionConfigurableMetricExporterProvider.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 MetricExporterModifier and TypeFieldDescriptionprivate final MetricExporter
PeriodicMetricReader.exporter
private final MetricExporter
PeriodicMetricReaderBuilder.metricExporter
Methods in io.opentelemetry.sdk.metrics.export with parameters of type MetricExporterModifier and TypeMethodDescriptionstatic 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 MetricExporterModifierConstructorDescription(package private)
PeriodicMetricReader
(MetricExporter exporter, long intervalNanos, ScheduledExecutorService scheduler) (package private)
PeriodicMetricReaderBuilder
(MetricExporter metricExporter)