[][src]Struct google_cloudtrace2::Span

pub struct Span {
    pub status: Option<Status>,
    pub child_span_count: Option<i32>,
    pub display_name: Option<TruncatableString>,
    pub name: Option<String>,
    pub links: Option<Links>,
    pub stack_trace: Option<StackTrace>,
    pub parent_span_id: Option<String>,
    pub start_time: Option<String>,
    pub attributes: Option<Attributes>,
    pub span_id: Option<String>,
    pub time_events: Option<TimeEvents>,
    pub end_time: Option<String>,
    pub same_process_as_parent_span: Option<bool>,
}

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 may be gaps or overlaps between spans in a trace.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

status: Option<Status>

An optional final status for this span.

child_span_count: Option<i32>

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

display_name: Option<TruncatableString>

A description of the span's operation (up to 128 bytes). Stackdriver Trace displays the description in the Google Cloud Platform 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.

name: Option<String>

The resource name of the span in the following format:

projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/SPAN_ID is a unique identifier for a trace within a project;

it is a 32-character hexadecimal encoding of a 16-byte array.

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

links: Option<Links>

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

stack_trace: Option<StackTrace>

Stack trace captured at the start of the span.

parent_span_id: Option<String>

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

start_time: Option<String>

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.

attributes: Option<Attributes>

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

span_id: Option<String>

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

time_events: Option<TimeEvents>

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

end_time: Option<String>

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.

same_process_as_parent_span: Option<bool>

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

Trait Implementations

impl ResponseResult for Span[src]

impl RequestValue for Span[src]

impl Default for Span[src]

impl Clone for Span[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Span[src]

impl Serialize for Span[src]

impl<'de> Deserialize<'de> for Span[src]

Auto Trait Implementations

impl Send for Span

impl Unpin for Span

impl Sync for Span

impl UnwindSafe for Span

impl RefUnwindSafe for Span

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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