Struct mick_jaeger::Span

source ·
pub struct Span { /* private fields */ }

Implementations§

source§

impl Span

source

pub fn child(&self, operation_name: impl Into<String>) -> Span

Creates a new Span, child of this one.

Note: There is no need to keep the parent Span alive while the children is alive. The protocol allows for parents that don’t completely overlap their children.

source

pub fn child_with_id( &self, span_id: NonZeroU64, operation_name: impl Into<String>, ) -> Span

Creates a new Span, child of this one, with a specific ID.

source

pub fn trace_id(&self) -> NonZeroU128

Returns the trace ID originally passed when building this span.

source

pub fn span_id(&self) -> NonZeroU64

Returns the span ID originally passed when building this span.

source

pub fn log(&mut self) -> Log<'_>

Add a log entry to this span.

source

pub fn add_follows_from(&mut self, other: &Span)

Adds a “followfrom” relation ship towards another span of (potentially) another trace.

source

pub fn add_follows_from_raw( &mut self, trace_id: NonZeroU128, span_id: NonZeroU64, )

Adds a “followfrom” relation ship towards another span of (potentially) another trace.

source

pub fn add_string_tag(&mut self, key: &str, value: &str)

Add a new key-value tag to this span.

source

pub fn add_int_tag(&mut self, key: &str, value: i64)

Add a new key-value tag to this span.

source

pub fn override_start_time(&mut self, start_time: StartTime)

Modifies the start time of this span.

Note: This method can be useful in order to generate a span with a trace_id that is only know after the span should have started. To do so, call StartTime::now when the span should start, create the span once you know the ̀trace_id, then call this method.

source

pub fn with_start_time_override(self, start_time: StartTime) -> Self

Modifies the start time of this span.

Note: This method can be useful in order to generate a span with a trace_id that is only know after the span should have started. To do so, call StartTime::now when the span should start, create the span once you know the ̀trace_id, then call this method.

Trait Implementations§

source§

impl Drop for Span

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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