Skip to main content

otelite_core/
lib.rs

1//! Otelite Core Library
2//!
3//! This crate provides core functionality for the Otelite OpenTelemetry receiver,
4//! including telemetry data types for metrics, logs, and traces.
5
6// Telemetry data types
7pub mod telemetry;
8
9// API response types
10pub mod api;
11
12// Query parser
13pub mod query;
14
15// Storage abstraction (trait + associated types)
16pub mod storage;
17
18// Re-exports for convenience
19pub use telemetry::{
20    format_attribute_preview, format_attribute_value, LogRecord, Metric, Resource, Span, Trace,
21};