pub struct CreateRoundRobinArchive {
pub consolidation_function: ConsolidationFunction,
pub xfiles_factor: f64,
pub steps: i64,
pub rows: i64,
}
Expand description
Arguments for a round robin archive (RRA).
Fields§
§consolidation_function: ConsolidationFunction
Archive types are AVERAGE, MIN, MAX, LAST.
xfiles_factor: f64
Number between 0 and 1 to accept unknown data 0.5 means that if more of 50% of the data points are unknown, the value is unknown.
steps: i64
Number of steps that are used to calculate the value
rows: i64
Number of rows in the archive
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CreateRoundRobinArchive
impl RefUnwindSafe for CreateRoundRobinArchive
impl Send for CreateRoundRobinArchive
impl Sync for CreateRoundRobinArchive
impl Unpin for CreateRoundRobinArchive
impl UnwindSafe for CreateRoundRobinArchive
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more