Uses of Interface
io.opentelemetry.sdk.trace.ReadWriteSpan
Packages that use ReadWriteSpan
Package
Description
The OpenTelemetry SDK implementation of tracing.
Utilities that allow tracing services to export data for sampled spans, as well as providing
in-process span processing APIs.
-
Uses of ReadWriteSpan in io.opentelemetry.sdk.trace
Classes in io.opentelemetry.sdk.trace that implement ReadWriteSpanModifier and TypeClassDescription(package private) final class
Implementation for theSpan
class that records trace events.Methods in io.opentelemetry.sdk.trace that return ReadWriteSpanModifier and TypeMethodDescriptionSdkSpan.addEvent
(String name, Attributes attributes) SdkSpan.addEvent
(String name, Attributes attributes, long timestamp, TimeUnit unit) SdkSpan.recordException
(Throwable exception) SdkSpan.recordException
(Throwable exception, Attributes additionalAttributes) <T> ReadWriteSpan
SdkSpan.setAttribute
(AttributeKey<T> key, T value) SdkSpan.setStatus
(StatusCode statusCode, String description) SdkSpan.updateName
(String name) Methods in io.opentelemetry.sdk.trace with parameters of type ReadWriteSpanModifier and TypeMethodDescriptionvoid
MultiSpanProcessor.onEnding
(ReadWriteSpan span) void
MultiSpanProcessor.onStart
(Context parentContext, ReadWriteSpan readWriteSpan) void
NoopSpanProcessor.onStart
(Context parentContext, ReadWriteSpan span) void
SpanProcessor.onStart
(Context parentContext, ReadWriteSpan span) Called when aSpan
is started, if theSpan.isRecording()
returns true. -
Uses of ReadWriteSpan in io.opentelemetry.sdk.trace.export
Methods in io.opentelemetry.sdk.trace.export with parameters of type ReadWriteSpanModifier and TypeMethodDescriptionvoid
BatchSpanProcessor.onStart
(Context parentContext, ReadWriteSpan span) void
SimpleSpanProcessor.onStart
(Context parentContext, ReadWriteSpan span) -
Uses of ReadWriteSpan in io.opentelemetry.sdk.trace.internal
Methods in io.opentelemetry.sdk.trace.internal with parameters of type ReadWriteSpanModifier and TypeMethodDescriptionvoid
ExtendedSpanProcessor.onEnding
(ReadWriteSpan span) Called when aSpan
is ended, but beforeSpanProcessor.onEnd(ReadableSpan)
is invoked with an immutable variant of this span.