pub enum MetricsConfig {
Disabled,
Enabled {
constant_labels: HashMap<String, String>,
metrics_registry: Option<Registry>,
},
}Expand description
Used to configure the options around metrics collection using the prometheus crate.
Variants§
Disabled
Metrics are not collected. Metrics are not registered with any registry.
Useful if an application only requires monitoring on some of its running twitch-irc
clients.
Enabled
Metrics are collected. The metrics are immediately registered when
TwitchIRCClient::new is called.
Fields
constant_labels: HashMap<String, String>Add these “constant labels” to all metrics produced by this client. This allows you to, for example, differentiate between multiple clients by naming them, or you may wish to place other relevant metadata pertaining to the whole client on all the metrics.
This defaults to an empty map.
metrics_registry: Option<Registry>Specifies what Registry to register all metrics for this
client with.
Defaults to None, in which case the metrics are registered with the
global default registry of the prometheus crate.
Trait Implementations§
Source§impl Debug for MetricsConfig
impl Debug for MetricsConfig
Auto Trait Implementations§
impl Freeze for MetricsConfig
impl !RefUnwindSafe for MetricsConfig
impl Send for MetricsConfig
impl Sync for MetricsConfig
impl Unpin for MetricsConfig
impl !UnwindSafe for MetricsConfig
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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