pub struct GlobalTracerProvider { /* private fields */ }Available on crate feature
trace only.Expand description
Represents the globally configured TracerProvider instance for this
application. This allows generic tracing through the returned
BoxedTracer instances.
Trait Implementations§
Source§impl Clone for GlobalTracerProvider
impl Clone for GlobalTracerProvider
Source§fn clone(&self) -> GlobalTracerProvider
fn clone(&self) -> GlobalTracerProvider
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GlobalTracerProvider
impl Debug for GlobalTracerProvider
Source§impl TracerProvider for GlobalTracerProvider
impl TracerProvider for GlobalTracerProvider
Source§fn versioned_tracer(
&self,
name: impl Into<Cow<'static, str>>,
version: Option<&'static str>,
schema_url: Option<&'static str>,
) -> Self::Tracer
fn versioned_tracer( &self, name: impl Into<Cow<'static, str>>, version: Option<&'static str>, schema_url: Option<&'static str>, ) -> Self::Tracer
Create a versioned tracer using the global provider.
Source§fn force_flush(&self) -> Vec<TraceResult<()>> ⓘ
fn force_flush(&self) -> Vec<TraceResult<()>> ⓘ
Force flush all remaining spans in span processors and return results.
Source§type Tracer = BoxedTracer
type Tracer = BoxedTracer
The
Tracer type that this provider will return.Auto Trait Implementations§
impl Freeze for GlobalTracerProvider
impl !RefUnwindSafe for GlobalTracerProvider
impl Send for GlobalTracerProvider
impl Sync for GlobalTracerProvider
impl Unpin for GlobalTracerProvider
impl !UnwindSafe for GlobalTracerProvider
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>
Available on crate feature
trace only.Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Available on crate feature
trace only.Source§impl<S, T, P> ObjectSafeTracerProvider for P
impl<S, T, P> ObjectSafeTracerProvider for P
Source§fn versioned_tracer_boxed(
&self,
name: Cow<'static, str>,
version: Option<&'static str>,
schema_url: Option<&'static str>,
) -> Box<dyn ObjectSafeTracer + Send + Sync>
Available on crate feature trace only.
fn versioned_tracer_boxed( &self, name: Cow<'static, str>, version: Option<&'static str>, schema_url: Option<&'static str>, ) -> Box<dyn ObjectSafeTracer + Send + Sync>
trace only.Return a versioned boxed tracer
Source§fn force_flush(&self) -> Vec<Result<(), TraceError>>
fn force_flush(&self) -> Vec<Result<(), TraceError>>
Available on crate feature
trace only.Force flush all remaining spans in span processors and return results.