Struct Gauge

Source
pub struct Gauge<V: GaugeValue = i64>(/* private fields */);
Expand description

Gauge metric.

Gauges are integer or floating-point values that can go up or down. Logically, a reported gauge value can be treated as valid until the next value is reported.

Gauge values must implement the GaugeValue trait.

Implementations§

Source§

impl<V: GaugeValue> Gauge<V>

Source

pub fn inc_by(&self, v: V) -> V

Increases this Gauge by v, returning the previous value.

Source

pub fn inc_guard(&self, v: V) -> GaugeGuard<V>

Increases this Gauge by v and returns a guard that will decrement this value back when dropped. This can be useful for gauges that measure consumption of a certain resource.

Source

pub fn dec_by(&self, v: V) -> V

Decreases this Gauge by v, returning the previous value.

§Panics

Depending on the value type, this method may panic on underflow; use with care.

Source

pub fn set(&self, value: V) -> V

Sets the value of this Gauge returning the previous value.

Source

pub fn get(&self) -> V

Gets the current value of the gauge.

Trait Implementations§

Source§

impl<V: GaugeValue> BuildMetric for Gauge<V>

Source§

type Builder = MetricBuilder

Metric builder used to construct a metric.
Source§

fn build(_builder: Self::Builder) -> Self

Creates a metric given its builder.
Source§

impl<V: GaugeValue> Clone for Gauge<V>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<V: GaugeValue> Debug for Gauge<V>

Source§

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

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

impl<V: GaugeValue> Default for Gauge<V>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<V: GaugeValue> EncodeMetric for Gauge<V>

Source§

fn encode(&self, encoder: MetricEncoder<'_>) -> Result

Encode the given instance in the OpenMetrics text encoding.
Source§

fn metric_type(&self) -> MetricType

The OpenMetrics metric type of the instance.
Source§

impl<V: GaugeValue> TypedMetric for Gauge<V>

Source§

const TYPE: MetricType = MetricType::Gauge

The OpenMetrics metric type.

Auto Trait Implementations§

§

impl<V> Freeze for Gauge<V>

§

impl<V> RefUnwindSafe for Gauge<V>

§

impl<V> Send for Gauge<V>
where <V as GaugeValue>::Atomic: Sync + Send, V: Send,

§

impl<V> Sync for Gauge<V>
where <V as GaugeValue>::Atomic: Sync + Send, V: Sync,

§

impl<V> Unpin for Gauge<V>
where V: Unpin,

§

impl<V> UnwindSafe for Gauge<V>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.
Source§

impl<T> Metric for T
where T: EncodeMetric + Send + Sync + Debug + 'static,