Uses of Interface
io.opentelemetry.sdk.trace.ReadWriteSpan
-
Packages that use ReadWriteSpan 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.io.opentelemetry.sdk.trace.internal -
-
Uses of ReadWriteSpan in io.opentelemetry.sdk.trace
Classes in io.opentelemetry.sdk.trace that implement ReadWriteSpan Modifier and Type Class Description (package private) class
SdkSpan
Implementation for theSpan
class that records trace events.Methods in io.opentelemetry.sdk.trace that return ReadWriteSpan Modifier and Type Method Description ReadWriteSpan
SdkSpan. addEvent(java.lang.String name)
ReadWriteSpan
SdkSpan. addEvent(java.lang.String name, long timestamp, java.util.concurrent.TimeUnit unit)
ReadWriteSpan
SdkSpan. addEvent(java.lang.String name, Attributes attributes)
ReadWriteSpan
SdkSpan. addEvent(java.lang.String name, Attributes attributes, long timestamp, java.util.concurrent.TimeUnit unit)
ReadWriteSpan
SdkSpan. recordException(java.lang.Throwable exception)
ReadWriteSpan
SdkSpan. recordException(java.lang.Throwable exception, Attributes additionalAttributes)
<T> ReadWriteSpan
SdkSpan. setAttribute(AttributeKey<T> key, T value)
ReadWriteSpan
SdkSpan. setStatus(StatusCode statusCode, java.lang.String description)
ReadWriteSpan
SdkSpan. updateName(java.lang.String name)
Methods in io.opentelemetry.sdk.trace with parameters of type ReadWriteSpan Modifier and Type Method Description void
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 ReadWriteSpan Modifier and Type Method Description void
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 ReadWriteSpan Modifier and Type Method Description void
ExtendedSpanProcessor. onEnding(ReadWriteSpan span)
Called when aSpan
is ended, but beforeSpanProcessor.onEnd(ReadableSpan)
is invoked with an immutable variant of this span.
-