Struct prometheus::core::MetricVec
source · pub struct MetricVec<T: MetricVecBuilder> { /* private fields */ }
Expand description
A Collector
to bundle metrics of the same name that
differ in their label values. It is usually not used directly but as a
building block for implementations of vectors of a given metric
type. GaugeVec
and CounterVec
are examples already provided in this package.
Implementations§
source§impl<P: Atomic> MetricVec<CounterVecBuilder<P>>
impl<P: Atomic> MetricVec<CounterVecBuilder<P>>
sourcepub fn new(opts: Opts, label_names: &[&str]) -> Result<Self>
pub fn new(opts: Opts, label_names: &[&str]) -> Result<Self>
Create a new GenericCounterVec
based on the provided
Opts
and partitioned by the given label names. At least one label name must be
provided.
sourcepub fn local(&self) -> GenericLocalCounterVec<P>
pub fn local(&self) -> GenericLocalCounterVec<P>
Return a GenericLocalCounterVec
for single thread usage.
source§impl MetricVec<HistogramVecBuilder>
impl MetricVec<HistogramVecBuilder>
sourcepub fn new(opts: HistogramOpts, label_names: &[&str]) -> Result<HistogramVec>
pub fn new(opts: HistogramOpts, label_names: &[&str]) -> Result<HistogramVec>
Create a new HistogramVec
based on the provided
HistogramOpts
and partitioned by the given label names. At least
one label name must be provided.
sourcepub fn local(&self) -> LocalHistogramVec
pub fn local(&self) -> LocalHistogramVec
Return a LocalHistogramVec
for single thread usage.
source§impl<T: MetricVecBuilder> MetricVec<T>
impl<T: MetricVecBuilder> MetricVec<T>
sourcepub fn create(
metric_type: MetricType,
new_metric: T,
opts: T::P,
) -> Result<MetricVec<T>>
pub fn create( metric_type: MetricType, new_metric: T, opts: T::P, ) -> Result<MetricVec<T>>
create
creates a MetricVec with description desc
, a metric type metric_type
and
a MetricVecBuilder new_metric
.
sourcepub fn get_metric_with_label_values(&self, vals: &[&str]) -> Result<T::M>
pub fn get_metric_with_label_values(&self, vals: &[&str]) -> Result<T::M>
get_metric_with_label_values
returns the Metric
for the given slice
of label values (same order as the VariableLabels in Desc). If that combination of
label values is accessed for the first time, a new Metric
is created.
It is possible to call this method without using the returned Metric
to only create the new Metric
but leave it at its start value (e.g. a
Histogram
without any observations).
Keeping the Metric
for later use is possible (and should be considered
if performance is critical), but keep in mind that Reset, DeleteLabelValues and Delete can
be used to delete the Metric
from the MetricVec. In that case, the
Metric
will still exist, but it will not be exported anymore, even if a
Metric
with the same label values is created later. See also the
CounterVec example.
An error is returned if the number of label values is not the same as the number of VariableLabels in Desc.
Note that for more than one label value, this method is prone to mistakes caused by an incorrect order of arguments. Consider get_metric_with(labels) as an alternative to avoid that type of mistake. For higher label numbers, the latter has a much more readable (albeit more verbose) syntax, but it comes with a performance overhead (for creating and processing the Labels map).
sourcepub fn get_metric_with(&self, labels: &HashMap<&str, &str>) -> Result<T::M>
pub fn get_metric_with(&self, labels: &HashMap<&str, &str>) -> Result<T::M>
get_metric_with
returns the Metric
for the given Labels map (the
label names must match those of the VariableLabels in Desc). If that label map is
accessed for the first time, a new Metric
is created. Implications of
creating a Metric
without using it and keeping the
Metric
for later use are the same as for GetMetricWithLabelValues.
An error is returned if the number and names of the Labels are inconsistent with those of the VariableLabels in Desc.
This method is used for the same purpose as
get_metric_with_label_values
. See there for pros and cons of the two
methods.
sourcepub fn with_label_values(&self, vals: &[&str]) -> T::M
pub fn with_label_values(&self, vals: &[&str]) -> T::M
with_label_values
works as get_metric_with_label_values
, but panics if an error
occurs.
§Examples
use prometheus::{CounterVec, Opts};
let vec = CounterVec::new(
Opts::new("requests_total", "Number of requests."),
&["code", "http_method"]
).unwrap();
vec.with_label_values(&["404", "POST"]).inc()
sourcepub fn with(&self, labels: &HashMap<&str, &str>) -> T::M
pub fn with(&self, labels: &HashMap<&str, &str>) -> T::M
with
works as get_metric_with
, but panics if an error occurs. The method allows
neat syntax like:
httpReqs.with(Labels{“status”:“404”, “method”:“POST”}).inc()
sourcepub fn remove_label_values(&self, vals: &[&str]) -> Result<()>
pub fn remove_label_values(&self, vals: &[&str]) -> Result<()>
remove_label_values
removes the metric where the variable labels are the same
as those passed in as labels (same order as the VariableLabels in Desc). It
returns true if a metric was deleted.
It returns an error if the number of label values is not the same as the number of VariableLabels in Desc.
Note that for more than one label value, this method is prone to mistakes caused by an incorrect order of arguments. Consider delete(labels) as an alternative to avoid that type of mistake. For higher label numbers, the latter has a much more readable (albeit more verbose) syntax, but it comes with a performance overhead (for creating and processing the Labels map).
sourcepub fn remove(&self, labels: &HashMap<&str, &str>) -> Result<()>
pub fn remove(&self, labels: &HashMap<&str, &str>) -> Result<()>
remove
removes the metric where the variable labels are the same as those
passed in as labels. It returns true if a metric was deleted.
It returns an error if the number and names of the Labels are inconsistent with those of the VariableLabels in the Desc of the MetricVec.
This method is used for the same purpose as delete_label_values
. See
there for pros and cons of the two methods.
Trait Implementations§
source§impl<T: MetricVecBuilder> Collector for MetricVec<T>
impl<T: MetricVecBuilder> Collector for MetricVec<T>
Auto Trait Implementations§
impl<T> Freeze for MetricVec<T>
impl<T> !RefUnwindSafe for MetricVec<T>
impl<T> Send for MetricVec<T>
impl<T> Sync for MetricVec<T>
impl<T> Unpin for MetricVec<T>
impl<T> !UnwindSafe for MetricVec<T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)