Skip to main content

beep_telemetry/
lib.rs

1
2//! Telemetry integration for the Beep workspace.
3//!
4//! This crate wires up OpenTelemetry (OTLP) tracing and metrics and
5//! provides a small public surface used by other crates to initialize
6//! telemetry. 
7//!
8
9pub mod telemetry;
10pub mod domain;
11
12pub use telemetry::{init, OtelGuard};
13
14pub use domain::models::errors::TelemetryError;