2021-10-13 08:24:41 +00:00
|
|
|
//! # Round Robin Database files
|
2021-10-06 10:19:54 +00:00
|
|
|
//!
|
|
|
|
//! ## Features
|
|
|
|
//!
|
|
|
|
//! * One file stores a single data source
|
2021-10-13 08:24:41 +00:00
|
|
|
//! * Stores data for different time resolution
|
|
|
|
//! * Simple cache implementation with journal support
|
|
|
|
|
|
|
|
mod rrd_v1;
|
2021-10-06 10:19:54 +00:00
|
|
|
|
|
|
|
pub mod rrd;
|
2021-10-06 05:06:17 +00:00
|
|
|
|
|
|
|
mod cache;
|
|
|
|
pub use cache::*;
|