Uses of Interface
io.opentelemetry.sdk.trace.ReadableSpan
-
Packages that use ReadableSpan Package Description io.opentelemetry.sdk.trace The OpenTelemetry SDK implementation of tracing.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. -
-
Uses of ReadableSpan in io.opentelemetry.sdk.trace
Subinterfaces of ReadableSpan in io.opentelemetry.sdk.trace Modifier and Type Interface Description interface
ReadWriteSpan
A combination of the write methods from theSpan
interface and the read methods from theReadableSpan
interface.Classes in io.opentelemetry.sdk.trace that implement ReadableSpan Modifier and Type Class Description (package private) class
SdkSpan
Implementation for theSpan
class that records trace events.Methods in io.opentelemetry.sdk.trace with parameters of type ReadableSpan Modifier and Type Method Description void
MultiSpanProcessor. onEnd(ReadableSpan readableSpan)
void
NoopSpanProcessor. onEnd(ReadableSpan span)
void
SpanProcessor. onEnd(ReadableSpan span)
Called when aSpan
is ended, if theSpan.isRecording()
returns true. -
Uses of ReadableSpan in io.opentelemetry.sdk.trace.export
Fields in io.opentelemetry.sdk.trace.export with type parameters of type ReadableSpan Modifier and Type Field Description private java.util.Queue<ReadableSpan>
BatchSpanProcessor.Worker. queue
Methods in io.opentelemetry.sdk.trace.export that return types with arguments of type ReadableSpan Modifier and Type Method Description (package private) java.util.Queue<ReadableSpan>
BatchSpanProcessor. getQueue()
Methods in io.opentelemetry.sdk.trace.export with parameters of type ReadableSpan Modifier and Type Method Description private void
BatchSpanProcessor.Worker. addSpan(ReadableSpan span)
void
BatchSpanProcessor. onEnd(ReadableSpan span)
void
SimpleSpanProcessor. onEnd(ReadableSpan span)
Constructor parameters in io.opentelemetry.sdk.trace.export with type arguments of type ReadableSpan Constructor Description Worker(SpanExporter spanExporter, MeterProvider meterProvider, long scheduleDelayNanos, int maxExportBatchSize, long exporterTimeoutNanos, java.util.Queue<ReadableSpan> queue)
-