@ParametersAreNonnullByDefault
Package io.opentelemetry.sdk.trace.export
Utilities that allow tracing services to export data for sampled spans, as well as providing
in-process span processing APIs.
Contents
Configuration options for components in this package can be read from system properties or environment variables with the use of the opentelemetry-autoconfiguration module.
-
Interface Summary Interface Description SpanExporter An interface that allows different tracing services to export recorded data for sampled spans in their own format. -
Class Summary Class Description BatchSpanProcessor Implementation of theSpanProcessor
that batches spans exported by the SDK then pushes them to the exporter pipeline.BatchSpanProcessorBuilder Builder class forBatchSpanProcessor
.SimpleSpanProcessor An implementation of theSpanProcessor
that converts theReadableSpan
toSpanData
and passes it directly to the configured exporter.