logo
pub struct SpanBuilder {
    pub trace_id: Option<TraceId>,
    pub span_id: Option<SpanId>,
    pub span_kind: Option<SpanKind>,
    pub name: Cow<'static, str>,
    pub start_time: Option<SystemTime>,
    pub end_time: Option<SystemTime>,
    pub attributes: Option<OrderMap<Key, Value, RandomState>>,
    pub events: Option<Vec<Event, Global>>,
    pub links: Option<Vec<Link, Global>>,
    pub status: Status,
    pub sampling_result: Option<SamplingResult>,
}
Available on crate feature trace only.
Expand description

SpanBuilder allows span attributes to be configured before the span has started.

use opentelemetry_api::{
    global,
    trace::{TracerProvider, SpanBuilder, SpanKind, Tracer},
};

let tracer = global::tracer("example-tracer");

// The builder can be used to create a span directly with the tracer
let _span = tracer.build(SpanBuilder {
    name: "example-span-name".into(),
    span_kind: Some(SpanKind::Server),
    ..Default::default()
});

// Or used with builder pattern
let _span = tracer
    .span_builder("example-span-name")
    .with_kind(SpanKind::Server)
    .start(&tracer);

Fields

trace_id: Option<TraceId>

Trace id, useful for integrations with external tracing systems.

span_id: Option<SpanId>

Span id, useful for integrations with external tracing systems.

span_kind: Option<SpanKind>

Span kind

name: Cow<'static, str>

Span name

start_time: Option<SystemTime>

Span start time

end_time: Option<SystemTime>

Span end time

attributes: Option<OrderMap<Key, Value, RandomState>>

Span attributes

events: Option<Vec<Event, Global>>

Span events

links: Option<Vec<Link, Global>>

Span Links

status: Status

Span status

sampling_result: Option<SamplingResult>

Sampling result

Implementations

SpanBuilder methods

Create a new span builder from a span name

Specify trace id to use if no parent context exists

Assign span id

Assign span kind

Assign span start time

Assign span end time

Assign span attributes from an iterable.

Check out SpanBuilder::with_attributes_map to assign span attributes via an OrderMap instance.

Assign span attributes.

Check out SpanBuilder::with_attributes to assign span attributes from an iterable of KeyValues.

Assign events

Assign links

Assign status code

Assign sampling result

Builds a span with the given tracer from this configuration.

Builds a span with the given tracer from this configuration and parent.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more

Attaches the current Context to this type, returning a WithContext wrapper. Read more

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.