pub enum ChartOption {
obsolete,
detail,
store_first,
hidden,
}
Expand description
Auxilary options available for Chart.
Variants§
obsolete
Mark a chart as obsolete (Netdata will hide it and delete it after some time).
detail
Mark a chart as insignificant (this may be used by dashboards to make the charts smaller, or somehow visualize properly a less important chart).
store_first
make Netdata store the first collected value, assuming there was an invisible
previous value set to zero (this is used by statsd
charts - if the first data
collected value of incremental dimensions is not zero based, unrealistic spikes
will appear with this option set).
to perform all operations on a chart, but do not offer it on dashboards (the chart will be send to external databases).
Trait Implementations§
Source§impl Clone for ChartOption
impl Clone for ChartOption
Source§fn clone(&self) -> ChartOption
fn clone(&self) -> ChartOption
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ChartOption
impl RefUnwindSafe for ChartOption
impl Send for ChartOption
impl Sync for ChartOption
impl Unpin for ChartOption
impl UnwindSafe for ChartOption
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