otelite-core 0.1.38

Core telemetry domain types for the Otelite OpenTelemetry receiver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Telemetry data types for OTLP signals

pub mod formatting;
pub mod genai;
pub mod log;
pub mod metric;
pub mod resource;
pub mod trace;

pub use formatting::{format_attribute_preview, format_attribute_value};
pub use genai::GenAiSpanInfo;
pub use log::LogRecord;
pub use metric::Metric;
pub use resource::Resource;
pub use trace::{Span, Trace};