pub struct FrozenRecorder<FailureStrategy = PanicInDebugNoOpInRelease> { /* private fields */ }
Expand description

metrics::Recorder allowing to access already registered metrics in a prometheus::Registry, but not to register new ones, and is built on top of a storage::Immutable.

Though this FrozenRecorder is not capable of registering new metrics in its prometheus::Registry on the fly, it still does allow changing the help description of already registered ones. By default, the prometheus::default_registry() is used.

The only way to register metrics in this FrozenRecorder is to specify them via Builder::with_metric()/Builder::try_with_metric() APIs, before the FrozenRecorder is built.

Example

let registry = metrics_prometheus::Recorder::builder()
    .with_metric(prometheus::IntCounterVec::new(
        prometheus::opts!("count", "help"),
        &["whose", "kind"],
    )?)
    .with_metric(prometheus::Gauge::new("value", "help")?)
    .build_frozen_and_install();

// `metrics` crate interfaces allow to change already registered metrics.
metrics::counter!(
    "count", "whose" => "mine", "kind" => "owned",
).increment(1);
metrics::counter!(
    "count", "whose" => "mine", "kind" => "ref",
).increment(1);
metrics::counter!(
    "count", "kind" => "owned", "whose" => "dummy",
).increment(1);
metrics::gauge!("value").increment(1.0);

let report = prometheus::TextEncoder::new()
    .encode_to_string(&registry.gather())?;
assert_eq!(
    report.trim(),
    r#"
# HELP count help
# TYPE count counter
count{kind="owned",whose="dummy"} 1
count{kind="owned",whose="mine"} 1
count{kind="ref",whose="mine"} 1
# HELP value help
# TYPE value gauge
value 1
    "#
    .trim(),
);

// However, you cannot register new metrics. This is just no-op.
metrics::gauge!("new").increment(2.0);

let report = prometheus::TextEncoder::new()
    .encode_to_string(&registry.gather())?;
assert_eq!(
    report.trim(),
    r#"
# HELP count help
# TYPE count counter
count{kind="owned",whose="dummy"} 1
count{kind="owned",whose="mine"} 1
count{kind="ref",whose="mine"} 1
# HELP value help
# TYPE value gauge
value 1
    "#
    .trim(),
);

// Luckily, metrics still can be described anytime after being registered.
metrics::describe_counter!("count", "Example of counter.");
metrics::describe_gauge!("value", "Example of gauge.");

let report = prometheus::TextEncoder::new()
    .encode_to_string(&prometheus::default_registry().gather())?;
assert_eq!(
    report.trim(),
    r#"
# HELP count Example of counter.
# TYPE count counter
count{kind="owned",whose="dummy"} 1
count{kind="owned",whose="mine"} 1
count{kind="ref",whose="mine"} 1
# HELP value Example of gauge.
# TYPE value gauge
value 1
    "#
    .trim(),
);

Performance

This FrozenRecorder provides the smallest overhead of accessing an already registered metric: just a regular HashMap lookup plus Arc cloning.

Errors

prometheus::Registry has far more stricter semantics than the ones implied by a metrics::Recorder. That’s why incorrect usage of prometheus metrics via metrics crate will inevitably lead to a prometheus::Registry returning a prometheus::Error, which can be either turned into a panic, or just silently ignored, making this FrozenRecorder to return a no-op metric instead (see metrics::Counter::noop() for example).

The desired behavior can be specified with a failure::Strategy implementation of this FrozenRecorder. By default a PanicInDebugNoOpInRelease failure::Strategy is used. See failure::strategy module for other available failure::Strategys, or provide your own one by implementing the failure::Strategy trait.

use metrics_prometheus::failure::strategy;

metrics_prometheus::Recorder::builder()
    .with_metric(prometheus::Gauge::new("value", "help")?)
    .with_failure_strategy(strategy::Panic)
    .build_and_install();

metrics::gauge!("value").increment(1.0);
// This panics, as such labeling is not allowed by `prometheus` crate.
metrics::gauge!("value", "whose" => "mine").increment(2.0);

Implementations§

source§

impl Recorder

source

pub fn builder() -> Builder

Starts building a new FrozenRecorder on top of the prometheus::default_registry().

Trait Implementations§

source§

impl<FailureStrategy: Debug> Debug for Recorder<FailureStrategy>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S> Recorder for Recorder<S>
where S: Strategy,

source§

fn describe_counter( &self, name: KeyName, _: Option<Unit>, description: SharedString )

Describes a counter. Read more
source§

fn describe_gauge( &self, name: KeyName, _: Option<Unit>, description: SharedString )

Describes a gauge. Read more
source§

fn describe_histogram( &self, name: KeyName, _: Option<Unit>, description: SharedString )

Describes a histogram. Read more
source§

fn register_counter(&self, key: &Key, _: &Metadata<'_>) -> Counter

Registers a counter.
source§

fn register_gauge(&self, key: &Key, _: &Metadata<'_>) -> Gauge

Registers a gauge.
source§

fn register_histogram(&self, key: &Key, _: &Metadata<'_>) -> Histogram

Registers a histogram.

Auto Trait Implementations§

§

impl<FailureStrategy = PanicInDebugNoOpInRelease> !RefUnwindSafe for Recorder<FailureStrategy>

§

impl<FailureStrategy> Send for Recorder<FailureStrategy>
where FailureStrategy: Send,

§

impl<FailureStrategy> Sync for Recorder<FailureStrategy>
where FailureStrategy: Sync,

§

impl<FailureStrategy> Unpin for Recorder<FailureStrategy>
where FailureStrategy: Unpin,

§

impl<FailureStrategy = PanicInDebugNoOpInRelease> !UnwindSafe for Recorder<FailureStrategy>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.