Span

Struct Span 

Source
#[non_exhaustive]
pub struct Span {
Show 14 fields pub name: String, pub span_id: String, pub parent_span_id: String, pub display_name: Option<TruncatableString>, pub start_time: Option<Timestamp>, pub end_time: Option<Timestamp>, pub attributes: Option<Attributes>, pub stack_trace: Option<StackTrace>, pub time_events: Option<TimeEvents>, pub links: Option<Links>, pub status: Option<Status>, pub same_process_as_parent_span: Option<BoolValue>, pub child_span_count: Option<Int32Value>, pub span_kind: SpanKind, /* private fields */
}
Expand description

A span represents a single operation within a trace. Spans can be nested to form a trace tree. Often, a trace contains a root span that describes the end-to-end latency, and one or more subspans for its sub-operations.

A trace can also contain multiple root spans, or none at all. Spans do not need to be contiguous. There might be gaps or overlaps between spans in a trace.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§name: String

Required. The resource name of the span in the following format:

  • projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/[SPAN_ID]

[TRACE_ID] is a unique identifier for a trace within a project; it is a 32-character hexadecimal encoding of a 16-byte array. It should not be zero.

[SPAN_ID] is a unique identifier for a span within a trace; it is a 16-character hexadecimal encoding of an 8-byte array. It should not be zero. .

§span_id: String

Required. The [SPAN_ID] portion of the span’s resource name.

§parent_span_id: String

The [SPAN_ID] of this span’s parent span. If this is a root span, then this field must be empty.

§display_name: Option<TruncatableString>

Required. A description of the span’s operation (up to 128 bytes). Cloud Trace displays the description in the Cloud console. For example, the display name can be a qualified method name or a file name and a line number where the operation is called. A best practice is to use the same display name within an application and at the same call point. This makes it easier to correlate spans in different traces.

§start_time: Option<Timestamp>

Required. The start time of the span. On the client side, this is the time kept by the local machine where the span execution starts. On the server side, this is the time when the server’s application handler starts running.

§end_time: Option<Timestamp>

Required. The end time of the span. On the client side, this is the time kept by the local machine where the span execution ends. On the server side, this is the time when the server application handler stops running.

§attributes: Option<Attributes>

A set of attributes on the span. You can have up to 32 attributes per span.

§stack_trace: Option<StackTrace>

Stack trace captured at the start of the span.

§time_events: Option<TimeEvents>

A set of time events. You can have up to 32 annotations and 128 message events per span.

§links: Option<Links>

Links associated with the span. You can have up to 128 links per Span.

§status: Option<Status>

Optional. The final status for this span.

§same_process_as_parent_span: Option<BoolValue>

Optional. Set this parameter to indicate whether this span is in the same process as its parent. If you do not set this parameter, Trace is unable to take advantage of this helpful information.

§child_span_count: Option<Int32Value>

Optional. The number of child spans that were generated while this span was active. If set, allows implementation to detect missing child spans.

§span_kind: SpanKind

Optional. Distinguishes between spans generated in a particular context. For example, two spans with the same name may be distinguished using CLIENT (caller) and SERVER (callee) to identify an RPC call.

Implementations§

Source§

impl Span

Source

pub fn new() -> Self

Source

pub fn set_name<T: Into<String>>(self, v: T) -> Self

Sets the value of name.

Source

pub fn set_span_id<T: Into<String>>(self, v: T) -> Self

Sets the value of span_id.

Source

pub fn set_parent_span_id<T: Into<String>>(self, v: T) -> Self

Sets the value of parent_span_id.

Source

pub fn set_display_name<T>(self, v: T) -> Self

Sets the value of display_name.

Source

pub fn set_or_clear_display_name<T>(self, v: Option<T>) -> Self

Sets or clears the value of display_name.

Source

pub fn set_start_time<T>(self, v: T) -> Self
where T: Into<Timestamp>,

Sets the value of start_time.

Source

pub fn set_or_clear_start_time<T>(self, v: Option<T>) -> Self
where T: Into<Timestamp>,

Sets or clears the value of start_time.

Source

pub fn set_end_time<T>(self, v: T) -> Self
where T: Into<Timestamp>,

Sets the value of end_time.

Source

pub fn set_or_clear_end_time<T>(self, v: Option<T>) -> Self
where T: Into<Timestamp>,

Sets or clears the value of end_time.

Source

pub fn set_attributes<T>(self, v: T) -> Self
where T: Into<Attributes>,

Sets the value of attributes.

Source

pub fn set_or_clear_attributes<T>(self, v: Option<T>) -> Self
where T: Into<Attributes>,

Sets or clears the value of attributes.

Source

pub fn set_stack_trace<T>(self, v: T) -> Self
where T: Into<StackTrace>,

Sets the value of stack_trace.

Source

pub fn set_or_clear_stack_trace<T>(self, v: Option<T>) -> Self
where T: Into<StackTrace>,

Sets or clears the value of stack_trace.

Source

pub fn set_time_events<T>(self, v: T) -> Self
where T: Into<TimeEvents>,

Sets the value of time_events.

Source

pub fn set_or_clear_time_events<T>(self, v: Option<T>) -> Self
where T: Into<TimeEvents>,

Sets or clears the value of time_events.

Sets the value of links.

Sets or clears the value of links.

Source

pub fn set_status<T>(self, v: T) -> Self
where T: Into<Status>,

Sets the value of status.

Source

pub fn set_or_clear_status<T>(self, v: Option<T>) -> Self
where T: Into<Status>,

Sets or clears the value of status.

Source

pub fn set_same_process_as_parent_span<T>(self, v: T) -> Self
where T: Into<BoolValue>,

Sets the value of same_process_as_parent_span.

Source

pub fn set_or_clear_same_process_as_parent_span<T>(self, v: Option<T>) -> Self
where T: Into<BoolValue>,

Sets or clears the value of same_process_as_parent_span.

Source

pub fn set_child_span_count<T>(self, v: T) -> Self
where T: Into<Int32Value>,

Sets the value of child_span_count.

Source

pub fn set_or_clear_child_span_count<T>(self, v: Option<T>) -> Self
where T: Into<Int32Value>,

Sets or clears the value of child_span_count.

Source

pub fn set_span_kind<T: Into<SpanKind>>(self, v: T) -> Self

Sets the value of span_kind.

Trait Implementations§

Source§

impl Clone for Span

Source§

fn clone(&self) -> Span

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Span

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Span

Source§

fn default() -> Span

Returns the “default value” for a type. Read more
Source§

impl Message for Span

Source§

fn typename() -> &'static str

The typename of this message.
Source§

impl PartialEq for Span

Source§

fn eq(&self, other: &Span) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Span

Auto Trait Implementations§

§

impl Freeze for Span

§

impl RefUnwindSafe for Span

§

impl Send for Span

§

impl Sync for Span

§

impl Unpin for Span

§

impl UnwindSafe for Span

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,