mirror of
https://git.proxmox.com/git/proxmox
synced 2025-05-30 03:23:17 +00:00
17 lines
295 B
Rust
17 lines
295 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;
|
|
#[doc(inline)]
|
|
pub use rrd::Entry;
|
|
|
|
mod cache;
|
|
pub use cache::*;
|