public final class SimpleSpanProcessor extends Object implements SpanProcessor
SpanProcessor that converts the ReadableSpan to SpanData and passes it directly to the configured exporter. This processor should only be used
where the exporter(s) are able to handle multiple exports simultaneously, as there is no back
pressure consideration here.
Configuration options for SimpleSpanProcessor can be read from system properties,
environment variables, or Properties objects.
For system properties and Properties objects, SimpleSpanProcessor
will look for the following names:
otel.ssp.export.sampled: sets whether only sampled spans should be exported.
For environment variables, SimpleSpanProcessor will look for the following names:
OTEL_SSP_EXPORT_SAMPLED: sets whether only sampled spans should be exported.
| Modifier and Type | Class and Description |
|---|---|
static class |
SimpleSpanProcessor.Builder
Builder class for
SimpleSpanProcessor. |
| Modifier and Type | Method and Description |
|---|---|
io.opentelemetry.sdk.common.CompletableResultCode |
forceFlush()
Processes all span events that have not yet been processed.
|
boolean |
isEndRequired()
Returns
true if this SpanProcessor requires end events. |
boolean |
isStartRequired()
Returns
true if this SpanProcessor requires start events. |
static SimpleSpanProcessor.Builder |
newBuilder(SpanExporter spanExporter)
Returns a new Builder for
SimpleSpanProcessor. |
void |
onEnd(ReadableSpan span)
Called when a
Span is ended, if the Span.isRecording()
returns true. |
void |
onStart(ReadWriteSpan span)
Called when a
Span is started, if the Span.isRecording()
returns true. |
io.opentelemetry.sdk.common.CompletableResultCode |
shutdown()
Processes all span events that have not yet been processed and closes used resources.
|
public void onStart(ReadWriteSpan span)
SpanProcessorSpan is started, if the Span.isRecording()
returns true.
This method is called synchronously on the execution thread, should not throw or block the execution thread.
onStart in interface SpanProcessorspan - the ReadableSpan that just started.public boolean isStartRequired()
SpanProcessortrue if this SpanProcessor requires start events.isStartRequired in interface SpanProcessortrue if this SpanProcessor requires start events.public void onEnd(ReadableSpan span)
SpanProcessorSpan is ended, if the Span.isRecording()
returns true.
This method is called synchronously on the execution thread, should not throw or block the execution thread.
onEnd in interface SpanProcessorspan - the ReadableSpan that just ended.public boolean isEndRequired()
SpanProcessortrue if this SpanProcessor requires end events.isEndRequired in interface SpanProcessortrue if this SpanProcessor requires end events.public io.opentelemetry.sdk.common.CompletableResultCode shutdown()
SpanProcessorshutdown in interface SpanProcessorCompletableResultCode which completes when shutdown is finished.public io.opentelemetry.sdk.common.CompletableResultCode forceFlush()
SpanProcessorforceFlush in interface SpanProcessorCompletableResultCode which completes when currently queued spans are
finished processing.public static SimpleSpanProcessor.Builder newBuilder(SpanExporter spanExporter)
SimpleSpanProcessor.spanExporter - the SpanExporter to where the Spans are pushed.SimpleSpanProcessor.NullPointerException - if the spanExporter is null.