Struct prometheus::core::GenericCounter
source · pub struct GenericCounter<P: Atomic> { /* private fields */ }
Expand description
The underlying implementation for Counter
and IntCounter
.
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.