risingwave_common_metrics::guarded_metrics

Struct LabelGuardedMetricVec

source
pub struct LabelGuardedMetricVec<T: MetricVecBuilder, const N: usize> {
    inner: MetricVec<T>,
    info: Arc<Mutex<LabelGuardedMetricsInfo<N>>>,
    labels: [&'static str; N],
}
Expand description

An RAII metrics vec with labels.

LabelGuardedMetricVec enhances the [MetricVec] to ensure the set of labels to be correctly removed from the Prometheus client once being dropped. This is useful for metrics that are associated with an object that can be dropped, such as streaming jobs, fragments, actors, batch tasks, etc.

When a set labels is dropped, it will record it in the uncollected_removed_labels set. Once the metrics has been collected, it will finally remove the metrics of the labels.

See also LabelGuardedMetricsInfo and LabelGuard::drop.

§Arguments

  • T - The type of the raw metrics vec.
  • N - The number of labels.

Fields§

§inner: MetricVec<T>§info: Arc<Mutex<LabelGuardedMetricsInfo<N>>>§labels: [&'static str; N]

Implementations§

source§

impl<T: MetricVecBuilder, const N: usize> LabelGuardedMetricVec<T, N>

source

pub fn new(inner: MetricVec<T>, labels: &[&'static str; N]) -> Self

source

pub fn with_guarded_label_values( &self, labels: &[&str; N], ) -> LabelGuardedMetric<T::M, N>

This is similar to the with_label_values of the raw metrics vec. We need to pay special attention that, unless for some special purpose, we should not drop the returned LabelGuardedMetric immediately after using it, such as metrics.with_guarded_label_values(...).inc();, because after dropped the label will be regarded as not used any more, and the internal raw metrics will be removed and reset.

Instead, we should store the returned LabelGuardedMetric in a scope with longer lifetime so that the labels can be regarded as being used in its whole life scope. This is also the recommended way to use the raw metrics vec.

source

pub fn with_test_label(&self) -> LabelGuardedMetric<T::M, N>

source§

impl<const N: usize> LabelGuardedMetricVec<impl MetricVecBuilder<M = GenericCounter<AtomicU64>>, N>

source§

impl<const N: usize> LabelGuardedMetricVec<impl MetricVecBuilder<M = GenericGauge<AtomicI64>>, N>

source

pub fn test_int_gauge_vec() -> Self

source§

impl<const N: usize> LabelGuardedMetricVec<impl MetricVecBuilder<M = GenericGauge<AtomicF64>>, N>

source

pub fn test_gauge_vec() -> Self

source§

impl<const N: usize> LabelGuardedMetricVec<impl MetricVecBuilder<M = Histogram>, N>

source

pub fn test_histogram_vec() -> Self

Trait Implementations§

source§

impl<T: Clone + MetricVecBuilder, const N: usize> Clone for LabelGuardedMetricVec<T, N>

source§

fn clone(&self) -> LabelGuardedMetricVec<T, N>

Returns a copy 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<T: MetricVecBuilder, const N: usize> Collector for LabelGuardedMetricVec<T, N>

source§

fn desc(&self) -> Vec<&Desc>

Return descriptors for metrics.
source§

fn collect(&self) -> Vec<MetricFamily>

Collect metrics.
source§

impl<T: MetricVecBuilder, const N: usize> Debug for LabelGuardedMetricVec<T, N>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, const N: usize> Freeze for LabelGuardedMetricVec<T, N>

§

impl<T, const N: usize> !RefUnwindSafe for LabelGuardedMetricVec<T, N>

§

impl<T, const N: usize> Send for LabelGuardedMetricVec<T, N>

§

impl<T, const N: usize> Sync for LabelGuardedMetricVec<T, N>

§

impl<T, const N: usize> Unpin for LabelGuardedMetricVec<T, N>

§

impl<T, const N: usize> !UnwindSafe for LabelGuardedMetricVec<T, N>

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, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<M> MetricVecRelabelExt for M

source§

fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>

source§

fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>

source§

fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>

Equivalent to RelabeledMetricVec::with_metric_level_relabel_n with metric_level set to MetricLevel::Debug and relabel_num set to 1.
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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more