1198f8d4e6
Storing much more data points now got get better graphs. Signed-off-by: Dietmar Maurer <dietmar@proxmox.com> Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
15 lines
260 B
Rust
15 lines
260 B
Rust
//! # Round Robin Database files
|
|
//!
|
|
//! ## Features
|
|
//!
|
|
//! * One file stores a single data source
|
|
//! * Stores data for different time resolution
|
|
//! * Simple cache implementation with journal support
|
|
|
|
mod rrd_v1;
|
|
|
|
pub mod rrd;
|
|
|
|
mod cache;
|
|
pub use cache::*;
|