Interface SpanExporterFactory
-
@Deprecated public interface SpanExporterFactory
Deprecated.Useio.opentelemetry.sdk.autoconfigure.spi.ConfigurableSpanExporterProvider
from theopentelemetry-sdk-extension-autoconfigure
instead.ASpanExporterFactory
acts as the bootstrap for aSpanExporter
implementation. An exporter must register its implementation of aSpanExporterFactory
through the Java SPI framework.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description io.opentelemetry.sdk.trace.export.SpanExporter
fromConfig(Properties config)
Deprecated.Creates an instance of aSpanExporter
based on the provided configuration.Set<String>
getNames()
Deprecated.Returns names of span exporters supported by this factory.
-
-
-
Method Detail
-
fromConfig
io.opentelemetry.sdk.trace.export.SpanExporter fromConfig(Properties config)
Deprecated.Creates an instance of aSpanExporter
based on the provided configuration.- Parameters:
config
- The configuration- Returns:
- An implementation of a
SpanExporter
-
getNames
Set<String> getNames()
Deprecated.Returns names of span exporters supported by this factory.Multiple names are useful for enabling a pair of span and metric exporters using the same name, while still having separate names for enabling them individually.
- Returns:
- The exporter names supported by this factory
-
-