//! Basic telemetry bootstrap example.
//!
//! Shows the minimal setup to initialise OpenTelemetry traces, metrics and logs
//! with a single call, then emit a span and shut down cleanly.
//!
//! Run with:
//! ```text
//! OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317 cargo run --example basic_setup
//! ```
//! Without a collector running the export will fail but the example itself will
//! still complete — exporter errors are non-fatal by design.
use Error;
use info_span;