litellm-rs 0.6.0

A high-performance AI Gateway written in Rust, providing OpenAI-compatible APIs with intelligent routing, load balancing, and enterprise features
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! OpenTelemetry Integration
//!
//! Provides distributed tracing for LLM requests using OpenTelemetry.

mod config;
mod exporter;
mod integration_impl;
mod span;

#[cfg(test)]
mod tests;

pub use self::config::OpenTelemetryConfig;
pub use self::integration_impl::OpenTelemetryIntegration;
pub use self::span::{AttributeValue, Span, SpanEvent, SpanKind, SpanStatus};