entrenar/monitor/storage/mod.rs
1//! Metrics Storage Module
2//!
3//! Persists training metrics to Parquet files using trueno-db.
4//! Feature-gated behind `monitor` feature flag.
5
6mod error;
7mod in_memory;
8mod json_file;
9mod traits;
10
11pub use error::{StorageError, StorageResult};
12pub use in_memory::InMemoryStore;
13pub use json_file::JsonFileStore;
14pub use traits::MetricsStore;
15
16#[cfg(test)]
17mod tests;