[−][src]Struct opentelemetry::sdk::trace::tracer::Tracer
Tracer
implementation to create and manage spans
Implementations
impl Tracer
[src]
Trait Implementations
impl Clone for Tracer
[src]
impl Debug for Tracer
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the Tracer
using the given formatter.
Omitting provider
here is necessary to avoid cycles.
impl Tracer for Tracer
[src]
type Span = Span
This implementation of api::Tracer
produces sdk::Span
instances.
fn invalid(&self) -> Self::Span
[src]
Returns a span with an inactive SpanContext
. Used by functions that
need to return a default span like get_active_span
if no span is present.
fn start_from_context(&self, name: &str, cx: &Context) -> Self::Span
[src]
Starts a new Span
in a given context.
Each span has zero or one parent spans and zero or more child spans, which represent causally related operations. A tree of related spans comprises a trace. A span is said to be a root span if it does not have a parent. Each trace includes a single root span, which is the shared ancestor of all other spans in the trace.
fn span_builder(&self, name: &str) -> SpanBuilder
[src]
Creates a span builder
An ergonomic way for attributes to be configured before the Span
is started.
fn build_with_context(&self, builder: SpanBuilder, cx: &Context) -> Self::Span
[src]
Starts a span from a SpanBuilder
.
Each span has zero or one parent spans and zero or more child spans, which represent causally related operations. A tree of related spans comprises a trace. A span is said to be a root span if it does not have a parent. Each trace includes a single root span, which is the shared ancestor of all other spans in the trace.
fn start(&self, name: &str) -> Self::Span
[src]
fn build(&self, builder: SpanBuilder) -> Self::Span
[src]
#[must_use = "Dropping the guard detaches the context."]fn mark_span_as_active(&self, span: Self::Span) -> ContextGuard
[src]
fn get_active_span<F, T>(&self, f: F) -> T where
F: FnOnce(&dyn Span) -> T,
Self: Sized,
[src]
F: FnOnce(&dyn Span) -> T,
Self: Sized,
fn in_span<T, F>(&self, name: &'static str, f: F) -> T where
F: FnOnce(Context) -> T,
Self::Span: Send + Sync,
[src]
F: FnOnce(Context) -> T,
Self::Span: Send + Sync,
fn with_span<T, F>(&self, span: Self::Span, f: F) -> T where
F: FnOnce(Context) -> T,
Self::Span: Send + Sync,
[src]
F: FnOnce(Context) -> T,
Self::Span: Send + Sync,
Auto Trait Implementations
impl !RefUnwindSafe for Tracer
impl Send for Tracer
impl Sync for Tracer
impl Unpin for Tracer
impl !UnwindSafe for Tracer
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> FutureExt for T
[src]
fn with_context(self, otel_cx: OpenTelemetryContext) -> WithContext<Self>
[src]
fn with_current_context(self) -> WithContext<Self>
[src]
impl<S, T> GenericTracer for T where
S: Span + Send + Sync,
T: Tracer<Span = S>,
[src]
S: Span + Send + Sync,
T: Tracer<Span = S>,
fn invalid_boxed(&Self) -> Box<dyn Span + 'static + Send + Sync>
[src]
Create a new invalid span for use in cases where there are no active spans.
fn start_with_context_boxed(
&Self,
&str,
&Context
) -> Box<dyn Span + 'static + Send + Sync>
[src]
&Self,
&str,
&Context
) -> Box<dyn Span + 'static + Send + Sync>
Returns a trait object so the underlying implementation can be swapped out at runtime.
fn build_with_context_boxed(
&Self,
SpanBuilder,
&Context
) -> Box<dyn Span + 'static + Send + Sync>
[src]
&Self,
SpanBuilder,
&Context
) -> Box<dyn Span + 'static + Send + Sync>
Returns a trait object so the underlying implementation can be swapped out at runtime.
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,