cortex_ingest_core/lib.rs
1//! Transport-neutral ingest primitives extracted from Cortex.
2//!
3//! This crate deliberately owns only hot-path transformations that are useful
4//! without Cortex storage, runtime, MCP, HTTP, CLI, or deployment code.
5//! Consumers can normalize log messages into stable error signatures and bound
6//! untrusted metadata before handing records to their own persistence layer.
7
8#![warn(missing_docs)]
9
10/// Bounded, redacted JSON metadata helpers for ingest pipelines.
11pub mod metadata;
12/// Log-message normalization and stable signature hashing.
13pub mod normalize;