Uses of Interface
io.opentelemetry.sdk.trace.data.StatusData
-
Packages that use StatusData Package Description io.opentelemetry.exporter.internal.otlp.traces Marshaling of OTLP traces.io.opentelemetry.sdk.trace The OpenTelemetry SDK implementation of tracing.io.opentelemetry.sdk.trace.data 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 StatusData Modifier and Type Method Description (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 StatusData Modifier and Type Field Description private StatusDataAutoValue_SpanWrapper. statusprivate StatusDataSdkSpan. statusMethods in io.opentelemetry.sdk.trace that return StatusData Modifier and Type Method Description StatusDataSpanWrapper. getStatus()(package private) StatusDataAutoValue_SpanWrapper. status()(package private) abstract StatusDataSpanWrapper. status()Methods in io.opentelemetry.sdk.trace with parameters of type StatusData Modifier and Type Method Description (package private) static SpanWrapperSpanWrapper. create(SdkSpan delegate, java.util.List<LinkData> links, java.util.List<EventData> events, Attributes attributes, int totalAttributeCount, int totalRecordedEvents, int totalRecordedLinks, StatusData status, java.lang.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 StatusData Constructor Description AutoValue_SpanWrapper(SdkSpan delegate, java.util.List<LinkData> resolvedLinks, java.util.List<EventData> resolvedEvents, Attributes attributes, int totalAttributeCount, int totalRecordedEvents, int totalRecordedLinks, StatusData status, java.lang.String name, long endEpochNanos, boolean internalHasEnded) -
Uses of StatusData in io.opentelemetry.sdk.trace.data
Classes in io.opentelemetry.sdk.trace.data that implement StatusData Modifier and Type Class Description (package private) classAutoValue_ImmutableStatusData(package private) classImmutableStatusDataDefines the status of aSpanby providing a standardStatusCodein conjunction with an optional descriptive message.Fields in io.opentelemetry.sdk.trace.data declared as StatusData Modifier and Type Field Description (package private) static StatusDataImmutableStatusData. ERRORThe operation contains an error.(package private) static StatusDataImmutableStatusData. OKThe operation has been validated by an Application developers or Operator to have completed successfully.(package private) static StatusDataImmutableStatusData. UNSETThe default status.Methods in io.opentelemetry.sdk.trace.data that return StatusData Modifier and Type Method Description (package private) static StatusDataImmutableStatusData. create(StatusCode statusCode, java.lang.String description)Creates a derived instance ofStatuswith the given description.static StatusDataStatusData. create(StatusCode code, java.lang.String description)private static StatusDataImmutableStatusData. createInternal(StatusCode statusCode, java.lang.String description)static StatusDataStatusData. error()Returns aStatusDataindicating an error occurred.StatusDataDelegatingSpanData. getStatus()StatusDataSpanData. 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.
-