Skip to main content

aether_telemetry/
lib.rs

1mod content_capture;
2mod content_json;
3pub mod error;
4mod gen_ai_metrics;
5mod genai_constants;
6mod llm_call_state;
7mod otel_observer;
8mod span_guard;
9mod telemetry_runtime;
10
11pub use error::{TelemetryInitError, TelemetryShutdownError};
12pub use gen_ai_metrics::GenAiMetrics;
13pub use genai_constants::{GENAI_SEMCONV_SCHEMA_URL, genai_instrumentation_scope};
14pub use otel_observer::{OtelInstrumentation, OtelObserver};
15pub use telemetry_runtime::{TelemetryConfig, TelemetryRuntime};