pub struct SpanData {Show 14 fields
pub span_context: SpanContext,
pub parent_span_id: String,
pub span_kind: SpanKind,
pub name: String,
pub start_time: Datetime,
pub end_time: Datetime,
pub attributes: Vec<KeyValue>,
pub events: Vec<Event>,
pub links: Vec<Link>,
pub status: Status,
pub instrumentation_scope: InstrumentationScope,
pub dropped_attributes: u32,
pub dropped_events: u32,
pub dropped_links: u32,
}Expand description
The data associated with a span.
Fields§
§span_context: SpanContextSpan context.
parent_span_id: StringSpan parent id.
span_kind: SpanKindSpan kind.
name: StringSpan name.
start_time: DatetimeSpan start time.
end_time: DatetimeSpan end time.
attributes: Vec<KeyValue>Span attributes.
events: Vec<Event>Span events.
links: Vec<Link>Span Links.
status: StatusSpan status.
instrumentation_scope: InstrumentationScopeInstrumentation scope that produced this span.
dropped_attributes: u32Number of attributes dropped by the span due to limits being reached.
dropped_events: u32Number of events dropped by the span due to limits being reached.
dropped_links: u32Number of links dropped by the span due to limits being reached.
Trait Implementations§
impl ComponentType for SpanData
impl Lift for SpanData
impl Lower for SpanData
Auto Trait Implementations§
impl Freeze for SpanData
impl RefUnwindSafe for SpanData
impl Send for SpanData
impl Sync for SpanData
impl Unpin for SpanData
impl UnsafeUnpin for SpanData
impl UnwindSafe for SpanData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more