Type Alias prometheus::Counter
source · pub type Counter = GenericCounter<AtomicF64>;
Expand description
A Metric
represents a single numerical value that only ever goes up.
Aliased Type§
struct Counter { /* private fields */ }
Implementations
source§impl<P: Atomic> GenericCounter<P>
impl<P: Atomic> GenericCounter<P>
sourcepub fn new<S1: Into<String>, S2: Into<String>>(
name: S1,
help: S2,
) -> Result<Self>
pub fn new<S1: Into<String>, S2: Into<String>>( name: S1, help: S2, ) -> Result<Self>
Create a GenericCounter
with the name
and help
arguments.
sourcepub fn with_opts(opts: Opts) -> Result<Self>
pub fn with_opts(opts: Opts) -> Result<Self>
Create a GenericCounter
with the opts
options.
sourcepub fn local(&self) -> GenericLocalCounter<P>
pub fn local(&self) -> GenericLocalCounter<P>
Return a GenericLocalCounter
for single thread usage.