pub struct Metric {
pub name: String,
pub help: String,
pub metric_type: MetricType,
pub value: MetricValue,
pub labels: Option<Vec<(String, String)>>,
}Expand description
Named metric with labels
Fields§
§name: String§help: String§metric_type: MetricType§value: MetricValue§labels: Option<Vec<(String, String)>>Implementations§
Source§impl Metric
impl Metric
pub fn counter( name: impl Into<String>, help: impl Into<String>, value: u64, ) -> Self
pub fn gauge( name: impl Into<String>, help: impl Into<String>, value: f64, ) -> Self
pub fn histogram( name: impl Into<String>, help: impl Into<String>, histogram: HistogramValue, ) -> Self
pub fn with_label( self, key: impl Into<String>, value: impl Into<String>, ) -> Self
pub fn with_labels(self, labels: Vec<(String, String)>) -> Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Metric
impl<'de> Deserialize<'de> for Metric
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 Metric
impl RefUnwindSafe for Metric
impl Send for Metric
impl Sync for Metric
impl Unpin for Metric
impl UnsafeUnpin for Metric
impl UnwindSafe for Metric
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<R, D> DepsPresent<D> for R
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Injectable for T
impl<T> Injectable for T
Source§fn type_id_of() -> TypeIdwhere
Self: Sized,
fn type_id_of() -> TypeIdwhere
Self: Sized,
Returns the TypeId of this type (for internal use)
Source§fn type_name_of() -> &'static strwhere
Self: Sized,
fn type_name_of() -> &'static strwhere
Self: Sized,
Returns the type name for debugging