pub struct RegisteredMetrics { /* private fields */ }Expand description
Registered collector handles for future metric update wiring.
Implementations§
Source§impl RegisteredMetrics
impl RegisteredMetrics
Sourcepub fn runs_total(&self) -> &GaugeVec
pub fn runs_total(&self) -> &GaugeVec
Returns the actionqueue_runs_total gauge vector.
Sourcepub fn runs_ready(&self) -> &Gauge
pub fn runs_ready(&self) -> &Gauge
Returns the actionqueue_runs_ready gauge.
Sourcepub fn runs_running(&self) -> &Gauge
pub fn runs_running(&self) -> &Gauge
Returns the actionqueue_runs_running gauge.
Sourcepub fn attempts_total(&self) -> &GaugeVec
pub fn attempts_total(&self) -> &GaugeVec
Returns the actionqueue_attempts_total gauge vector.
Sourcepub fn scheduling_lag_seconds(&self) -> &Histogram
pub fn scheduling_lag_seconds(&self) -> &Histogram
Returns the actionqueue_scheduling_lag_seconds histogram.
Sourcepub fn executor_duration_seconds(&self) -> &Histogram
pub fn executor_duration_seconds(&self) -> &Histogram
Returns the actionqueue_executor_duration_seconds histogram.
Sourcepub fn wal_append_total(&self) -> &Counter
pub fn wal_append_total(&self) -> &Counter
Returns the actionqueue_wal_append_total counter.
Sourcepub fn wal_append_failures_total(&self) -> &Counter
pub fn wal_append_failures_total(&self) -> &Counter
Returns the actionqueue_wal_append_failures_total counter.
Sourcepub fn recovery_time_seconds(&self) -> &Histogram
pub fn recovery_time_seconds(&self) -> &Histogram
Returns the actionqueue_recovery_time_seconds histogram.
Sourcepub fn recovery_events_applied_total(&self) -> &Counter
pub fn recovery_events_applied_total(&self) -> &Counter
Returns the actionqueue_recovery_events_applied_total counter.
Trait Implementations§
Source§impl Clone for RegisteredMetrics
impl Clone for RegisteredMetrics
Source§fn clone(&self) -> RegisteredMetrics
fn clone(&self) -> RegisteredMetrics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RegisteredMetrics
impl !RefUnwindSafe for RegisteredMetrics
impl Send for RegisteredMetrics
impl Sync for RegisteredMetrics
impl Unpin for RegisteredMetrics
impl UnsafeUnpin for RegisteredMetrics
impl !UnwindSafe for RegisteredMetrics
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
Mutably borrows from an owned value. Read more