dm_database_sqllog2db/lib.rs
1//! Stream `DaMeng` SQL logs through filtering and parameter substitution into export backends.
2//!
3//! [`cli`] handles commands; [`engine`] orchestrates exports; [`pipeline`] processes records;
4//! [`exporter`] owns output formats. [`stats`] provides SQL analysis.
5
6pub mod cli;
7pub mod config;
8pub mod engine;
9pub mod error;
10pub mod exporter;
11pub mod logging;
12pub(crate) mod parser;
13pub mod pipeline;
14pub mod preflight;
15pub(crate) mod scanner;
16pub mod stats;
17pub(crate) mod streaming;