pub struct OpenTelemetryLayer<S, T> { /* private fields */ }Expand description
An OpenTelemetry propagation layer for use in a project that uses tracing.
Implementations§
source§impl<S, T> OpenTelemetryLayer<S, T>where
S: Subscriber + for<'span> LookupSpan<'span>,
T: Tracer + PreSampledTracer + 'static,
impl<S, T> OpenTelemetryLayer<S, T>where S: Subscriber + for<'span> LookupSpan<'span>, T: Tracer + PreSampledTracer + 'static,
sourcepub fn new(tracer: T) -> Self
pub fn new(tracer: T) -> Self
Set the Tracer that this layer will use to produce and track
OpenTelemetry Spans.
Examples
use tracing_opentelemetry::OpenTelemetryLayer;
use tracing_subscriber::layer::SubscriberExt;
use tracing_subscriber::Registry;
// Create a jaeger exporter pipeline for a `trace_demo` service.
let tracer = opentelemetry_jaeger::new_pipeline()
.with_service_name("trace_demo")
.install_simple()
.expect("Error initializing Jaeger exporter");
// Create a layer with the configured tracer
let otel_layer = OpenTelemetryLayer::new(tracer);
// Use the tracing subscriber `Registry`, or any other subscriber
// that impls `LookupSpan`
let subscriber = Registry::default().with(otel_layer);sourcepub fn with_tracer<Tracer>(
self,
tracer: Tracer
) -> OpenTelemetryLayer<S, Tracer>where
Tracer: Tracer + PreSampledTracer + 'static,
pub fn with_tracer<Tracer>( self, tracer: Tracer ) -> OpenTelemetryLayer<S, Tracer>where Tracer: Tracer + PreSampledTracer + 'static,
Set the Tracer that this layer will use to produce and track
OpenTelemetry Spans.
Examples
use tracing_subscriber::layer::SubscriberExt;
use tracing_subscriber::Registry;
// Create a jaeger exporter pipeline for a `trace_demo` service.
let tracer = opentelemetry_jaeger::new_pipeline()
.with_service_name("trace_demo")
.install_simple()
.expect("Error initializing Jaeger exporter");
// Create a layer with the configured tracer
let otel_layer = tracing_opentelemetry::layer().with_tracer(tracer);
// Use the tracing subscriber `Registry`, or any other subscriber
// that impls `LookupSpan`
let subscriber = Registry::default().with(otel_layer);sourcepub fn with_exception_fields(self, exception_fields: bool) -> Self
pub fn with_exception_fields(self, exception_fields: bool) -> Self
Sets whether or not span and event metadata should include OpenTelemetry
exception fields such as exception.message and exception.backtrace
when an Error value is recorded. If multiple error values are recorded
on the same span/event, only the most recently recorded error value will
show up under these fields.
These attributes follow the OpenTelemetry semantic conventions for exceptions.
By default, these attributes are not recorded.
sourcepub fn with_exception_field_propagation(
self,
exception_field_propagation: bool
) -> Self
pub fn with_exception_field_propagation( self, exception_field_propagation: bool ) -> Self
Sets whether or not reporting an Error value on an event will
propagate the OpenTelemetry exception fields such as exception.message
and exception.backtrace to the corresponding span. You do not need to
enable with_exception_fields in order to enable this. If multiple
error values are recorded on the same span/event, only the most recently
recorded error value will show up under these fields.
These attributes follow the OpenTelemetry semantic conventions for exceptions.
By default, these attributes are not propagated to the span.
sourcepub fn with_location(self, location: bool) -> Self
pub fn with_location(self, location: bool) -> Self
Sets whether or not span and event metadata should include OpenTelemetry attributes with location information, such as the file, module and line number.
These attributes follow the OpenTelemetry semantic conventions for source locations.
By default, locations are enabled.
sourcepub fn with_event_location(self, event_location: bool) -> Self
👎Deprecated since 0.17.3: renamed to OpenTelemetrySubscriber::with_location
pub fn with_event_location(self, event_location: bool) -> Self
OpenTelemetrySubscriber::with_locationSets whether or not span and event metadata should include OpenTelemetry attributes with location information, such as the file, module and line number.
These attributes follow the OpenTelemetry semantic conventions for source locations.
By default, locations are enabled.
sourcepub fn with_tracked_inactivity(self, tracked_inactivity: bool) -> Self
pub fn with_tracked_inactivity(self, tracked_inactivity: bool) -> Self
Sets whether or not spans metadata should include the busy time (total time for which it was entered), and idle time (total time the span existed but was not entered).
sourcepub fn with_threads(self, threads: bool) -> Self
pub fn with_threads(self, threads: bool) -> Self
Sets whether or not spans record additional attributes for the thread name and thread ID of the thread they were created on, following the OpenTelemetry semantic conventions for threads.
By default, thread attributes are enabled.
Trait Implementations§
source§impl<S> Default for OpenTelemetryLayer<S, NoopTracer>where
S: Subscriber + for<'span> LookupSpan<'span>,
impl<S> Default for OpenTelemetryLayer<S, NoopTracer>where S: Subscriber + for<'span> LookupSpan<'span>,
source§impl<S, T> Layer<S> for OpenTelemetryLayer<S, T>where
S: Subscriber + for<'span> LookupSpan<'span>,
T: Tracer + PreSampledTracer + 'static,
impl<S, T> Layer<S> for OpenTelemetryLayer<S, T>where S: Subscriber + for<'span> LookupSpan<'span>, T: Tracer + PreSampledTracer + 'static,
source§fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>)
fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>)
Creates an OpenTelemetry Span for the corresponding tracing Span.
source§fn on_record(&self, id: &Id, values: &Record<'_>, ctx: Context<'_, S>)
fn on_record(&self, id: &Id, values: &Record<'_>, ctx: Context<'_, S>)
Record OpenTelemetry attributes for the given values.
source§fn on_enter(&self, id: &Id, ctx: Context<'_, S>)
fn on_enter(&self, id: &Id, ctx: Context<'_, S>)
source§fn on_exit(&self, id: &Id, ctx: Context<'_, S>)
fn on_exit(&self, id: &Id, ctx: Context<'_, S>)
source§fn on_follows_from(&self, id: &Id, follows: &Id, ctx: Context<'_, S>)
fn on_follows_from(&self, id: &Id, follows: &Id, ctx: Context<'_, S>)
span recorded that it
follows from the span with the ID follows.source§fn on_register_dispatch(&self, collector: &Dispatch)
fn on_register_dispatch(&self, collector: &Dispatch)
Subscriber. Read moresource§fn register_callsite(&self, metadata: &'static Metadata<'static>) -> Interest
fn register_callsite(&self, metadata: &'static Metadata<'static>) -> Interest
Subscriber::register_callsite. Read moresource§fn enabled(&self, metadata: &Metadata<'_>, ctx: Context<'_, S>) -> bool
fn enabled(&self, metadata: &Metadata<'_>, ctx: Context<'_, S>) -> bool
true if this layer is interested in a span or event with the
given metadata in the current Context, similarly to
Subscriber::enabled. Read moresource§fn event_enabled(&self, _event: &Event<'_>, _ctx: Context<'_, S>) -> bool
fn event_enabled(&self, _event: &Event<'_>, _ctx: Context<'_, S>) -> bool
on_event, to determine if on_event should be called.source§fn on_id_change(&self, _old: &Id, _new: &Id, _ctx: Context<'_, S>)
fn on_id_change(&self, _old: &Id, _new: &Id, _ctx: Context<'_, S>)
source§fn and_then<L>(self, layer: L) -> Layered<L, Self, S>where
L: Layer<S>,
Self: Sized,
fn and_then<L>(self, layer: L) -> Layered<L, Self, S>where L: Layer<S>, Self: Sized,
Layer, returning a Layered
struct implementing Layer. Read moresource§fn with_subscriber(self, inner: S) -> Layered<Self, S>where
Self: Sized,
fn with_subscriber(self, inner: S) -> Layered<Self, S>where Self: Sized,
Layer with the given Subscriber, returning a
Layered struct that implements Subscriber. Read more