[][src]Struct solana_libra_metrics::OpMetrics

pub struct OpMetrics { /* fields omitted */ }

Methods

impl OpMetrics[src]

pub fn new<S: Into<String>>(name: S) -> OpMetrics[src]

pub fn new_and_registered<S: Into<String>>(name: S) -> OpMetrics[src]

pub fn gauge(&self, name: &str) -> IntGauge[src]

pub fn peer_gauge(&self, name: &str, remote_peer_id: &str) -> IntGauge[src]

pub fn counter(&self, name: &str) -> IntCounter[src]

pub fn histogram(&self, name: &str) -> Histogram[src]

pub fn duration_histogram(&self, name: &str) -> DurationHistogram[src]

pub fn inc(&self, op: &str)[src]

pub fn inc_by(&self, op: &str, v: usize)[src]

pub fn add(&self, op: &str)[src]

pub fn sub(&self, op: &str)[src]

pub fn set(&self, op: &str, v: usize)[src]

pub fn observe(&self, op: &str, v: f64)[src]

pub fn observe_duration(&self, op: &str, d: Duration)[src]

pub fn timer(&self, op: &str) -> HistogramTimer[src]

Trait Implementations

impl Clone for OpMetrics[src]

impl Collector for OpMetrics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,