Struct opentelemetry_otlp::OtlpTracePipeline
source · pub struct OtlpTracePipeline<EB> { /* private fields */ }
Available on crate feature
trace
only.Expand description
Recommended configuration for an OTLP exporter pipeline.
§Examples
let tracing_pipeline = opentelemetry_otlp::new_pipeline().tracing();
Implementations§
source§impl<EB> OtlpTracePipeline<EB>
impl<EB> OtlpTracePipeline<EB>
sourcepub fn with_trace_config(self, trace_config: Config) -> Self
pub fn with_trace_config(self, trace_config: Config) -> Self
Set the trace provider configuration.
sourcepub fn with_batch_config(self, batch_config: BatchConfig) -> Self
pub fn with_batch_config(self, batch_config: BatchConfig) -> Self
Set the batch span processor configuration, and it will override the env vars.
source§impl OtlpTracePipeline<NoExporterConfig>
impl OtlpTracePipeline<NoExporterConfig>
sourcepub fn with_exporter<B: Into<SpanExporterBuilder>>(
self,
pipeline: B,
) -> OtlpTracePipeline<SpanExporterBuilder>
pub fn with_exporter<B: Into<SpanExporterBuilder>>( self, pipeline: B, ) -> OtlpTracePipeline<SpanExporterBuilder>
Set the OTLP span exporter builder.
Note that the pipeline will not build the exporter until install_batch
or install_simple
is called.
source§impl OtlpTracePipeline<SpanExporterBuilder>
impl OtlpTracePipeline<SpanExporterBuilder>
sourcepub fn install_simple(self) -> Result<TracerProvider, TraceError>
pub fn install_simple(self) -> Result<TracerProvider, TraceError>
Install the configured span exporter.
Returns a TracerProvider
.
sourcepub fn install_batch<R: RuntimeChannel>(
self,
runtime: R,
) -> Result<TracerProvider, TraceError>
pub fn install_batch<R: RuntimeChannel>( self, runtime: R, ) -> Result<TracerProvider, TraceError>
Install the configured span exporter and a batch span processor using the specified runtime.
Returns a TracerProvider
.
install_batch
will panic if not called within a tokio runtime
Trait Implementations§
Auto Trait Implementations§
impl<EB> Freeze for OtlpTracePipeline<EB>where
EB: Freeze,
impl<EB> !RefUnwindSafe for OtlpTracePipeline<EB>
impl<EB> Send for OtlpTracePipeline<EB>where
EB: Send,
impl<EB> Sync for OtlpTracePipeline<EB>where
EB: Sync,
impl<EB> Unpin for OtlpTracePipeline<EB>where
EB: Unpin,
impl<EB> !UnwindSafe for OtlpTracePipeline<EB>
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> 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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request