[−][src]Enum opentelemetry::api::trace::span::SpanKind
SpanKind describes the relationship between the Span, its parents,
and its children in a Trace. SpanKind describes two independent
properties that benefit tracing systems during analysis.
The first property described by SpanKind reflects whether the Span
is a remote child or parent. Spans with a remote parent are
interesting because they are sources of external load. Spans with a
remote child are interesting because they reflect a non-local system
dependency.
The second property described by SpanKind reflects whether a child
Span represents a synchronous call. When a child span is synchronous,
the parent is expected to wait for it to complete under ordinary
circumstances. It can be useful for tracing systems to know this
property, since synchronous Spans may contribute to the overall trace
latency. Asynchronous scenarios can be remote or local.
In order for SpanKind to be meaningful, callers should arrange that
a single Span does not serve more than one purpose. For example, a
server-side span should not be used directly as the parent of another
remote span. As a simple guideline, instrumentation should create a
new Span prior to extracting and serializing the span context for a
remote call.
To summarize the interpretation of these kinds:
SpanKind | Synchronous | Asynchronous | Remote Incoming | Remote Outgoing |
|---|---|---|---|---|
Client | yes | yes | ||
Server | yes | yes | ||
Producer | yes | yes | ||
Consumer | yes | yes | ||
Internal |
Variants
Indicates that the span describes a synchronous request to
some remote service. This span is the parent of a remote Server
span and waits for its response.
Indicates that the span covers server-side handling of a
synchronous RPC or other remote request. This span is the child of
a remote Client span that was expected to wait for a response.
Indicates that the span describes the parent of an
asynchronous request. This parent span is expected to end before
the corresponding child Consumer span, possibly even before the
child span starts. In messaging scenarios with batching, tracing
individual messages requires a new Producer span per message to
be created.
Indicates that the span describes the child of an
asynchronous Producer request.
Default value. Indicates that the span represents an internal operation within an application, as opposed to an operations with remote parents or children.
Trait Implementations
impl Clone for SpanKind[src]
impl Debug for SpanKind[src]
impl Display for SpanKind[src]
impl PartialEq<SpanKind> for SpanKind[src]
impl StructuralPartialEq for SpanKind[src]
Auto Trait Implementations
impl RefUnwindSafe for SpanKind
impl Send for SpanKind
impl Sync for SpanKind
impl Unpin for SpanKind
impl UnwindSafe for SpanKind
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> FutureExt for T[src]
fn with_context(self, otel_cx: OpenTelemetryContext) -> WithContext<Self>[src]
fn with_current_context(self) -> WithContext<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>, [src]
V: MultiLane<T>,