Struct substrate_prometheus_endpoint::Counter [−]
pub struct Counter<P> where
P: Atomic, { /* fields omitted */ }
Expand description
The underlying implementation for [Counter
] and [IntCounter
].
Implementations
impl<P> GenericCounter<P> where
P: Atomic,
impl<P> GenericCounter<P> where
P: Atomic,
Create a GenericCounter
with the name
and help
arguments.
pub fn with_opts(opts: Opts) -> Result<GenericCounter<P>, Error>
pub fn with_opts(opts: Opts) -> Result<GenericCounter<P>, Error>
Create a GenericCounter
with the opts
options.
pub fn inc_by(&self, v: <P as Atomic>::T)
pub fn inc_by(&self, v: <P as Atomic>::T)
pub fn inc(&self)
pub fn inc(&self)
Increase the counter by 1.
pub fn get(&self) -> <P as Atomic>::T
pub fn get(&self) -> <P as Atomic>::T
Return the counter value.
pub fn reset(&self)
pub fn reset(&self)
Restart the counter, resetting its value back to 0.
pub fn local(&self) -> GenericLocalCounter<P>
pub fn local(&self) -> GenericLocalCounter<P>
Return a [GenericLocalCounter
] for single thread usage.
Trait Implementations
impl<P> Clone for GenericCounter<P> where
P: Atomic,
impl<P> Clone for GenericCounter<P> where
P: Atomic,
pub fn clone(&self) -> GenericCounter<P>
pub fn clone(&self) -> GenericCounter<P>
Returns a copy of the value. Read more
Performs copy-assignment from source
. Read more
impl<P> Collector for GenericCounter<P> where
P: Atomic,
impl<P> Collector for GenericCounter<P> where
P: Atomic,
impl<P> Debug for GenericCounter<P> where
P: Debug + Atomic,
impl<P> Debug for GenericCounter<P> where
P: Debug + Atomic,
impl<P> Metric for GenericCounter<P> where
P: Atomic,
impl<P> Metric for GenericCounter<P> where
P: Atomic,
pub fn metric(&self) -> Metric
pub fn metric(&self) -> Metric
Return the protocol Metric.
Auto Trait Implementations
impl<P> RefUnwindSafe for GenericCounter<P> where
P: RefUnwindSafe,
impl<P> Send for GenericCounter<P>
impl<P> Sync for GenericCounter<P>
impl<P> Unpin for GenericCounter<P>
impl<P> UnwindSafe for GenericCounter<P> where
P: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more