otelite-core 0.1.23

Core telemetry domain types for the Otelite OpenTelemetry receiver
Documentation
//! Otelite Core Library
//!
//! This crate provides core functionality for the Otelite OpenTelemetry receiver,
//! including telemetry data types for metrics, logs, and traces.

// Telemetry data types
pub mod telemetry;

// API response types
pub mod api;

// Query parser
pub mod query;

// Storage abstraction (trait + associated types)
pub mod storage;

// GenAI semantic-convention attribute vocabulary
pub mod semconv;

// Model pricing data + cost computation
pub mod pricing;

// Agent-framework attribute recognizers (CrewAI, AutoGen, LangGraph, ...)
pub mod agent_frameworks;

// Re-exports for convenience
pub use telemetry::{
    format_attribute_preview, format_attribute_value, LogRecord, Metric, Resource, Span, Trace,
};