pub struct IntCounterWithLabels<L: Labels> { /* private fields */ }
Expand description

A Prometheus integer counter metric, with labels described by the type L.

The type L must implement the Labels trait; see the documentation for that trait for an overview of Prometheus metric labels.

Implementations

Construct and immediately register a new IntCounterWithLabels instance.

Get the value of the counter with the provided labels.

Increment the metric by 1, using the provided labels for the event.

Increment the metric by v, using the provided labels for the event.

Creates a guard value that will increment the metric by 1, using the provided labels, once dropped.

Prior to dropping, the labels can be altered using DeferredAddWithLabels::with_labels.

Creates a guard value that will increment the metric by v, using the provided labels, once dropped.

Prior to dropping, the labels can be altered using DeferredAddWithLabels::with_labels.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.