Type Alias Counter

Source
pub type Counter = GenericCounter<AtomicF64>;
Available on crate feature metrics only.
Expand description

A Metric represents a single numerical value that only ever goes up.

Aliased Type§

struct Counter { /* private fields */ }

Implementations

Source§

impl<P> GenericCounter<P>
where P: Atomic,

Source

pub fn new<S1, S2>(name: S1, help: S2) -> Result<GenericCounter<P>, Error>
where S1: Into<String>, S2: Into<String>,

Create a GenericCounter with the name and help arguments.

Source

pub fn with_opts(opts: Opts) -> Result<GenericCounter<P>, Error>

Create a GenericCounter with the opts options.

Source

pub fn inc_by(&self, v: <P as Atomic>::T)

Increase the given value to the counter.

§Panics

Panics in debug build if the value is < 0.

Source

pub fn inc(&self)

Increase the counter by 1.

Source

pub fn get(&self) -> <P as Atomic>::T

Return the counter value.

Source

pub fn reset(&self)

Restart the counter, resetting its value back to 0.

Source

pub fn local(&self) -> GenericLocalCounter<P>

Return a GenericLocalCounter for single thread usage.

Trait Implementations§

Source§

impl DurationMetric for Counter

Source§

fn record(&mut self, seconds: f64)

Source§

impl<P> Clone for GenericCounter<P>
where P: Atomic,

Source§

fn clone(&self) -> GenericCounter<P>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<P> Collector for GenericCounter<P>
where P: Atomic,

Source§

fn desc(&self) -> Vec<&Desc>

Return descriptors for metrics.
Source§

fn collect(&self) -> Vec<MetricFamily>

Collect metrics.
Source§

impl<P> Debug for GenericCounter<P>
where P: Debug + Atomic,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T> MakeCollector for GenericCounter<T>
where T: Atomic + 'static,

Source§

fn make_collector(mk_opts: MakeCollectorOpts) -> Self

Creates a new collector.
Source§

impl<P> Metric for GenericCounter<P>
where P: Atomic,

Source§

fn metric(&self) -> Metric

Return the protocol Metric.