Uses of Interface
io.opentelemetry.sdk.trace.data.StatusData
Packages that use StatusData
Package
Description
Marshaling of OTLP traces.
The OpenTelemetry SDK implementation of tracing.
The data format to model traces for export.
-
Uses of StatusData in io.opentelemetry.exporter.internal.otlp.traces
Methods in io.opentelemetry.exporter.internal.otlp.traces with parameters of type StatusDataModifier and TypeMethodDescription(package private) static SpanStatusMarshalerSpanStatusMarshaler.create(StatusData status) intSpanStatusStatelessMarshaler.getBinarySerializedSize(StatusData status, MarshalerContext context) (package private) static ProtoEnumInfoSpanStatusMarshaler.toProtoSpanStatus(StatusData status) voidSpanStatusStatelessMarshaler.writeTo(Serializer output, StatusData status, MarshalerContext context) -
Uses of StatusData in io.opentelemetry.sdk.trace
Fields in io.opentelemetry.sdk.trace declared as StatusDataModifier and TypeFieldDescriptionprivate final StatusDataAutoValue_SpanWrapper.statusprivate StatusDataSdkSpan.statusMethods in io.opentelemetry.sdk.trace that return StatusDataModifier and TypeMethodDescriptionSpanWrapper.getStatus()(package private) StatusDataAutoValue_SpanWrapper.status()(package private) abstract StatusDataSpanWrapper.status()Methods in io.opentelemetry.sdk.trace with parameters of type StatusDataModifier and TypeMethodDescription(package private) static SpanWrapperSpanWrapper.create(SdkSpan delegate, List<LinkData> links, List<EventData> events, Attributes attributes, int totalAttributeCount, int totalRecordedEvents, int totalRecordedLinks, StatusData status, String name, long endEpochNanos, boolean hasEnded) Note: the collections that are passed into this creator method are assumed to be immutable to preserve the overall immutability of the class.Constructors in io.opentelemetry.sdk.trace with parameters of type StatusDataModifierConstructorDescription(package private)AutoValue_SpanWrapper(SdkSpan delegate, List<LinkData> resolvedLinks, List<EventData> resolvedEvents, Attributes attributes, int totalAttributeCount, int totalRecordedEvents, int totalRecordedLinks, StatusData status, String name, long endEpochNanos, boolean internalHasEnded) -
Uses of StatusData in io.opentelemetry.sdk.trace.data
Classes in io.opentelemetry.sdk.trace.data that implement StatusDataModifier and TypeClassDescription(package private) final class(package private) classDefines the status of aSpanby providing a standardStatusCodein conjunction with an optional descriptive message.Fields in io.opentelemetry.sdk.trace.data declared as StatusDataModifier and TypeFieldDescription(package private) static final StatusDataImmutableStatusData.ERRORThe operation contains an error.(package private) static final StatusDataImmutableStatusData.OKThe operation has been validated by an Application developers or Operator to have completed successfully.(package private) static final StatusDataImmutableStatusData.UNSETThe default status.Methods in io.opentelemetry.sdk.trace.data that return StatusDataModifier and TypeMethodDescription(package private) static StatusDataImmutableStatusData.create(StatusCode statusCode, String description) Creates a derived instance ofStatuswith the given description.static StatusDataStatusData.create(StatusCode code, String description) private static StatusDataImmutableStatusData.createInternal(StatusCode statusCode, String description) static StatusDataStatusData.error()Returns aStatusDataindicating an error occurred.DelegatingSpanData.getStatus()SpanData.getStatus()Returns theStatus.static StatusDataStatusData.ok()Returns aStatusDataindicating the operation has been validated by an application developer or operator to have completed successfully.static StatusDataStatusData.unset()Returns the defaultStatusData.