Struct prometheus_http_query::response::TsdbStatistics
source · pub struct TsdbStatistics { /* private fields */ }
Expand description
Prometheus TSDB statistics.
Implementations§
source§impl TsdbStatistics
impl TsdbStatistics
sourcepub fn head_stats(&self) -> HeadStatistics
pub fn head_stats(&self) -> HeadStatistics
Get the head block data.
sourcepub fn series_count_by_metric_name(&self) -> &[TsdbItemCount]
pub fn series_count_by_metric_name(&self) -> &[TsdbItemCount]
Get a list of metric names and their series count.
sourcepub fn label_value_count_by_label_name(&self) -> &[TsdbItemCount]
pub fn label_value_count_by_label_name(&self) -> &[TsdbItemCount]
Get a list of label names and their value count.
sourcepub fn memory_in_bytes_by_label_name(&self) -> &[TsdbItemCount]
pub fn memory_in_bytes_by_label_name(&self) -> &[TsdbItemCount]
Get a list of label names and memory used in bytes.
sourcepub fn series_count_by_label_value_pair(&self) -> &[TsdbItemCount]
pub fn series_count_by_label_value_pair(&self) -> &[TsdbItemCount]
Get a list of label name/value pairs and their series count.
Trait Implementations§
source§impl Clone for TsdbStatistics
impl Clone for TsdbStatistics
source§fn clone(&self) -> TsdbStatistics
fn clone(&self) -> TsdbStatistics
Returns a copy 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 moresource§impl Debug for TsdbStatistics
impl Debug for TsdbStatistics
source§impl<'de> Deserialize<'de> for TsdbStatistics
impl<'de> Deserialize<'de> for TsdbStatistics
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TsdbStatistics
impl RefUnwindSafe for TsdbStatistics
impl Send for TsdbStatistics
impl Sync for TsdbStatistics
impl Unpin for TsdbStatistics
impl UnwindSafe for TsdbStatistics
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