Skip to main content

TelemetryBuilder

Struct TelemetryBuilder 

Source
pub struct TelemetryBuilder { /* private fields */ }
Expand description

Builder for configuring and creating a Telemetry instance.

Use this builder to combine configuration-based setup with programmatic customization. Exporters and processors added via the builder are used in addition to those specified in the configuration.

You can register telemetry providers globally using:

Or use with_globals() to enable all of them at once.

§Example

use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};

let config = OpenTelemetryConfig::default();
let telemetry = Telemetry::builder(config).with_globals().build()?;

Implementations§

Source§

impl TelemetryBuilder

Source

pub fn new(config: OpenTelemetryConfig) -> Self

Create a new builder with the given configuration.

By default, nothing is registered globally. Use with_globals() to opt in to all global registrations, or individual methods to opt in selectively.

Source

pub fn with_global_tracer_provider(self) -> Self

Register the tracer provider as the global tracer provider.

When enabled, you can use opentelemetry::global::tracer() to obtain tracers anywhere in your application.

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};
use opentelemetry::global;

let telemetry = Telemetry::builder(OpenTelemetryConfig::default())
    .with_global_tracer_provider()
    .build()?;

// Now you can get tracers from anywhere
let tracer = global::tracer("my-component");
Source

pub fn with_global_meter_provider(self) -> Self

Register the meter provider as the global meter provider.

When enabled, you can use opentelemetry::global::meter() to obtain meters anywhere in your application.

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};
use opentelemetry::global;

let telemetry = Telemetry::builder(OpenTelemetryConfig::default())
    .with_global_meter_provider()
    .build()?;

// Now you can get meters from anywhere
let meter = global::meter("my-component");
Source

pub fn with_global_propagator(self) -> Self

Register the propagator configuration as the global text map propagator.

When enabled, tower middleware such as http_server_propagation() and http_client_propagation() automatically use the configured propagator.

Source

pub fn with_globals(self) -> Self

Enable all global registrations at once.

Equivalent to calling with_global_tracer_provider(), with_global_meter_provider(), with_log_bridge(), with_tracing_bridge(), and with_global_propagator().

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};

let telemetry = Telemetry::builder(OpenTelemetryConfig::default())
    .with_globals()
    .build()?;
Source

pub fn with_log_bridge(self) -> Self

Enable the log bridge to route log crate macros to OpenTelemetry.

When enabled, calls to log::info!(), log::error!(), etc. will be exported as OpenTelemetry log records through the configured logger provider.

The bridge respects the RUST_LOG environment variable for filtering. If RUST_LOG is not set, defaults to info level.

Note: This sets the global logger, so it can only be called once per process. Calling build() will fail if another logger is already installed.

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};

let telemetry = Telemetry::builder(OpenTelemetryConfig::default())
    .with_log_bridge()
    .build()?;

// Now log macros are routed to OpenTelemetry
log::info!("This goes to OpenTelemetry");
Source

pub fn with_tracing_bridge(self) -> Self

Enable the tracing bridge to route tracing crate spans and events to OpenTelemetry.

When enabled, tracing::info!(), tracing::span!(), etc. will be exported as OpenTelemetry log records and traces through the configured providers.

The bridge respects the RUST_LOG environment variable for filtering. If RUST_LOG is not set, defaults to info level.

Note: This sets the global tracing subscriber, so it can only be called once per process. Calling build() will fail if another subscriber is already installed.

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};

let telemetry = Telemetry::builder(OpenTelemetryConfig::logs_to_stderr())
    .with_tracing_bridge()
    .build()?;

// Now tracing macros are routed to OpenTelemetry
tracing::info!("This goes to OpenTelemetry");
Source

pub fn with_resource_builder(self, builder: ResourceBuilder) -> Self

Set the resource builder for configuring resource attributes.

Resource attributes provide identifying information about the entity producing telemetry (e.g., service name, version, deployment environment).

Attributes from the builder are merged with any resource configuration from the config file. On conflicts, builder values take precedence, allowing you to override specific attributes like service.name while keeping other config-defined attributes.

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};
use opentelemetry_sdk::Resource;
use opentelemetry::KeyValue;

let telemetry = Telemetry::builder(OpenTelemetryConfig::default())
    .with_resource_builder(
        Resource::builder()
            .with_service_name("my-service")
            .with_attributes([
                KeyValue::new("service.version", "1.0.0"),
                KeyValue::new("deployment.environment", "production"),
            ])
    )
    .build()?;
Source

pub fn with_span_processor<T: SpanProcessor + 'static>( self, processor: T, ) -> Self

Add a custom span processor to the tracer provider.

Span processors receive spans as they are started and ended, allowing for custom processing logic such as filtering, enrichment, or routing to multiple exporters.

This is added in addition to any processors configured via the configuration file.

Source

pub fn with_batch_span_exporter<T: SpanExporter + 'static>( self, exporter: T, ) -> Self

Add a span exporter with batch processing.

Batch processing buffers spans and exports them in batches, which is more efficient for production use. This is the recommended approach for most applications.

This is added in addition to any exporters configured via the configuration file.

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};
use opentelemetry_otlp::SpanExporter;

let exporter = SpanExporter::builder()
    .with_http()
    .with_endpoint("http://localhost:4318")
    .build()
    .unwrap();

let telemetry = Telemetry::builder(OpenTelemetryConfig::default())
    .with_batch_span_exporter(exporter)
    .build()
    .unwrap();
Source

pub fn with_simple_span_exporter<T: SpanExporter + 'static>( self, exporter: T, ) -> Self

Add a span exporter with simple (synchronous) processing.

Simple processing exports spans immediately as they complete. This is useful for development and debugging but may impact performance in production.

This is added in addition to any exporters configured via the configuration file.

Source

pub fn with_view<F>(self, view: F) -> Self
where F: Fn(&Instrument) -> Option<Stream> + Send + Sync + 'static,

Add a metric view for customizing metric aggregation.

Views allow you to customize how metrics are collected and reported. The view function receives instrument metadata and can return a Stream configuration to modify the instrument’s behavior.

Return Some(Stream) to apply customizations, or None to use the default behavior.

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};
use opentelemetry_sdk::metrics::{Instrument, Stream};

let telemetry = Telemetry::builder(OpenTelemetryConfig::default())
    .with_view(|instrument: &Instrument| {
        // Customize high-cardinality metrics
        if instrument.name().contains("debug") {
            Some(Stream::default())
        } else {
            None // Use default behavior
        }
    })
    .build()?;
Source

pub fn with_periodic_reader<E>(self, reader: PeriodicReader<E>) -> Self

Add a periodic reader for push-based metric export.

A PeriodicReader collects metrics at regular intervals and pushes them to the configured exporter. Use PeriodicReaderBuilder for custom interval and timeout settings.

This is added in addition to any readers configured via the configuration file.

§Example
use apollo_opentelemetry::{OpenTelemetryConfig, Telemetry};
use opentelemetry_sdk::metrics::PeriodicReader;
use opentelemetry_otlp::MetricExporter;
use std::time::Duration;

let exporter = MetricExporter::builder().with_http().build()?;
let reader = PeriodicReader::builder(exporter)
    .with_interval(Duration::from_secs(30))
    .build();

let telemetry = Telemetry::builder(OpenTelemetryConfig::default())
    .with_periodic_reader(reader)
    .build()?;
Source

pub fn with_batch_log_exporter<T>(self, exporter: T) -> Self
where T: LogExporter + 'static,

Add a log exporter with batch processing.

Batch processing buffers log records and exports them in batches, which is more efficient for production use.

This is added in addition to any exporters configured via the configuration file.

Source

pub fn with_simple_log_exporter<T>(self, exporter: T) -> Self
where T: LogExporter + 'static,

Add a log exporter with simple (synchronous) processing.

Simple processing exports log records immediately. This is useful for development and debugging but may impact performance in production.

This is added in addition to any exporters configured via the configuration file.

Source

pub fn build(self) -> Result<Telemetry, InitError>

Build the Telemetry instance.

This initializes the OpenTelemetry providers based on the configuration and any programmatic customizations. Providers are only created if they are configured or have programmatic additions.

§Errors

Returns an error if exporter initialization fails (e.g., invalid endpoint, missing credentials, or required feature not enabled).

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<L> LayerExt<L> for L

Source§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in Layered.
Source§

impl<D> OwoColorize for D

Source§

fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>
where C: Color,

Set the foreground color generically Read more
Source§

fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>
where C: Color,

Set the background color generically. Read more
Source§

fn black(&self) -> FgColorDisplay<'_, Black, Self>

Change the foreground color to black
Source§

fn on_black(&self) -> BgColorDisplay<'_, Black, Self>

Change the background color to black
Source§

fn red(&self) -> FgColorDisplay<'_, Red, Self>

Change the foreground color to red
Source§

fn on_red(&self) -> BgColorDisplay<'_, Red, Self>

Change the background color to red
Source§

fn green(&self) -> FgColorDisplay<'_, Green, Self>

Change the foreground color to green
Source§

fn on_green(&self) -> BgColorDisplay<'_, Green, Self>

Change the background color to green
Source§

fn yellow(&self) -> FgColorDisplay<'_, Yellow, Self>

Change the foreground color to yellow
Source§

fn on_yellow(&self) -> BgColorDisplay<'_, Yellow, Self>

Change the background color to yellow
Source§

fn blue(&self) -> FgColorDisplay<'_, Blue, Self>

Change the foreground color to blue
Source§

fn on_blue(&self) -> BgColorDisplay<'_, Blue, Self>

Change the background color to blue
Source§

fn magenta(&self) -> FgColorDisplay<'_, Magenta, Self>

Change the foreground color to magenta
Source§

fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>

Change the background color to magenta
Source§

fn purple(&self) -> FgColorDisplay<'_, Magenta, Self>

Change the foreground color to purple
Source§

fn on_purple(&self) -> BgColorDisplay<'_, Magenta, Self>

Change the background color to purple
Source§

fn cyan(&self) -> FgColorDisplay<'_, Cyan, Self>

Change the foreground color to cyan
Source§

fn on_cyan(&self) -> BgColorDisplay<'_, Cyan, Self>

Change the background color to cyan
Source§

fn white(&self) -> FgColorDisplay<'_, White, Self>

Change the foreground color to white
Source§

fn on_white(&self) -> BgColorDisplay<'_, White, Self>

Change the background color to white
Source§

fn default_color(&self) -> FgColorDisplay<'_, Default, Self>

Change the foreground color to the terminal default
Source§

fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>

Change the background color to the terminal default
Source§

fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>

Change the foreground color to bright black
Source§

fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>

Change the background color to bright black
Source§

fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>

Change the foreground color to bright red
Source§

fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>

Change the background color to bright red
Source§

fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>

Change the foreground color to bright green
Source§

fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>

Change the background color to bright green
Source§

fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>

Change the foreground color to bright yellow
Source§

fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>

Change the background color to bright yellow
Source§

fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>

Change the foreground color to bright blue
Source§

fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>

Change the background color to bright blue
Source§

fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>

Change the foreground color to bright magenta
Source§

fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>

Change the background color to bright magenta
Source§

fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>

Change the foreground color to bright purple
Source§

fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>

Change the background color to bright purple
Source§

fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>

Change the foreground color to bright cyan
Source§

fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>

Change the background color to bright cyan
Source§

fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>

Change the foreground color to bright white
Source§

fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>

Change the background color to bright white
Source§

fn bold(&self) -> BoldDisplay<'_, Self>

Make the text bold
Source§

fn dimmed(&self) -> DimDisplay<'_, Self>

Make the text dim
Source§

fn italic(&self) -> ItalicDisplay<'_, Self>

Make the text italicized
Source§

fn underline(&self) -> UnderlineDisplay<'_, Self>

Make the text underlined
Make the text blink
Make the text blink (but fast!)
Source§

fn reversed(&self) -> ReversedDisplay<'_, Self>

Swap the foreground and background colors
Source§

fn hidden(&self) -> HiddenDisplay<'_, Self>

Hide the text
Source§

fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>

Cross out the text
Source§

fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the foreground color at runtime. Only use if you do not know which color will be used at compile-time. If the color is constant, use either OwoColorize::fg or a color-specific method, such as OwoColorize::green, Read more
Source§

fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the background color at runtime. Only use if you do not know what color to use at compile-time. If the color is constant, use either OwoColorize::bg or a color-specific method, such as OwoColorize::on_yellow, Read more
Source§

fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the foreground color to a specific RGB value.
Source§

fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the background color to a specific RGB value.
Source§

fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>

Sets the foreground color to an RGB value.
Source§

fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>

Sets the background color to an RGB value.
Source§

fn style(&self, style: Style) -> Styled<&Self>

Apply a runtime-determined style
Source§

fn if_supports_color<'a, Out, ApplyFn>( &'a self, stream: impl Into<Stream>, apply: ApplyFn, ) -> SupportsColorsDisplay<'a, Self, Out, ApplyFn>
where ApplyFn: Fn(&'a Self) -> Out,

Apply a given transformation function to all formatters if the given stream supports at least basic ANSI colors, allowing you to conditionally apply given styles/colors. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more