[−][src]Struct opentelemetry::sdk::trace::SimpleSpanProcessor
A SpanProcessor
that exports synchronously when spans are finished.
Examples
Note that the simple processor exports synchronously every time a span is ended. If you find this limiting, consider the batch processor instead.
use opentelemetry::{trace as apitrace, sdk::trace as sdktrace, global}; // Configure your preferred exporter let exporter = apitrace::NoopSpanExporter::new(); // Then use the `with_simple_exporter` method to have the provider export when spans finish. let provider = sdktrace::TracerProvider::builder() .with_simple_exporter(exporter) .build(); let guard = global::set_tracer_provider(provider);
Trait Implementations
impl Debug for SimpleSpanProcessor
[src]
impl SpanProcessor for SimpleSpanProcessor
[src]
fn on_start(&self, _span: &Span, _cx: &Context)
[src]
fn on_end(&self, span: SpanData)
[src]
fn force_flush(&self) -> TraceResult<()>
[src]
fn shutdown(&mut self) -> TraceResult<()>
[src]
Auto Trait Implementations
impl RefUnwindSafe for SimpleSpanProcessor
impl Send for SimpleSpanProcessor
impl Sync for SimpleSpanProcessor
impl Unpin for SimpleSpanProcessor
impl UnwindSafe for SimpleSpanProcessor
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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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.
pub 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.
pub 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>,