Struct opentelemetry::sdk::trace::BatchSpanProcessor[][src]

pub struct BatchSpanProcessor<R: TraceRuntime> { /* fields omitted */ }
This is supported on crate feature trace only.
Expand description

A SpanProcessor that asynchronously buffers finished spans and reports them at a preconfigured interval.

Batch span processors need to run a background task to collect and send spans. Different runtimes need different ways to handle the background task.

Note: Configuring an opentelemetry Runtime that’s not compatible with the underlying runtime can cause deadlocks (see tokio section).

Use with Tokio

Tokio currently offers two different schedulers. One is current_thread_scheduler, the other is multiple_thread_scheduler. Both of them default to use batch span processors to install span exporters.

Tokio’s current_thread_scheduler can cause the program to hang forever if blocking work is scheduled with other tasks in the same runtime. To avoid this, be sure to enable the rt-tokio-current-thread feature in this crate if you are using that runtime (e.g. users of actix-web), and blocking tasks will then be scheduled on a different thread.

Examples

This processor can be configured with an executor of your choice to batch and upload spans asynchronously when they end. If you have added a library like tokio or async-std, you can pass in their respective spawn and interval functions to have batching performed in those contexts.

use opentelemetry::{global, runtime, sdk, trace::noop::NoopSpanExporter};
use std::time::Duration;

#[tokio::main]
async fn main() {
    // Configure your preferred exporter
    let exporter = NoopSpanExporter::new();

    // Create a batch span processor using an exporter and a runtime
    let batch = sdk::trace::BatchSpanProcessor::builder(exporter, runtime::Tokio)
        .with_max_queue_size(4096)
        .build();

    // Then use the `with_batch_exporter` method to have the provider export spans in batches.
    let provider = sdk::trace::TracerProvider::builder()
        .with_span_processor(batch)
        .build();

    let _ = global::set_tracer_provider(provider);
}

Implementations

Create a new batch processor builder

Trait Implementations

Formats the value using the given formatter. Read more

on_start is called when a Span is started. This method is called synchronously on the thread that started the span, therefore it should not block or throw exceptions. Read more

on_end is called after a Span is ended (i.e., the end timestamp is already set). This method is called synchronously within the Span::end API, therefore it should not block or throw an exception. Read more

Force the spans lying in the cache to be exported.

Shuts down the processor. Called when SDK is shut down. This is an opportunity for processors to do any cleanup required. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.