2024-03-24 20:23:16 +00:00
|
|
|
use lazy_static::lazy_static;
|
|
|
|
use prometheus::{IntCounterVec, Opts, Registry};
|
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
pub static ref REGISTRY: Registry = Registry::new();
|
|
|
|
pub static ref REQUEST_COUNTER: IntCounterVec =
|
2024-03-24 20:37:29 +00:00
|
|
|
IntCounterVec::new(Opts::new("requests", "Web requests"), &["method", "status", "route"])
|
2024-03-24 20:23:16 +00:00
|
|
|
.unwrap();
|
2024-03-24 20:37:29 +00:00
|
|
|
pub static ref REMINDER_COUNTER: IntCounterVec =
|
2024-03-25 16:41:49 +00:00
|
|
|
IntCounterVec::new(Opts::new("reminders_sent", "Reminders sent"), &["id", "channel"])
|
|
|
|
.unwrap();
|
2024-03-24 20:37:29 +00:00
|
|
|
pub static ref REMINDER_FAIL_COUNTER: IntCounterVec = IntCounterVec::new(
|
|
|
|
Opts::new("reminders_failed", "Reminders failed"),
|
2024-03-25 16:41:49 +00:00
|
|
|
&["id", "channel", "error"]
|
2024-03-24 20:37:29 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
pub static ref COMMAND_COUNTER: IntCounterVec =
|
|
|
|
IntCounterVec::new(Opts::new("commands", "Commands used"), &["command"]).unwrap();
|
2024-03-24 20:23:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn init_metrics() {
|
|
|
|
REGISTRY.register(Box::new(REQUEST_COUNTER.clone())).unwrap();
|
2024-03-24 20:37:29 +00:00
|
|
|
REGISTRY.register(Box::new(REMINDER_COUNTER.clone())).unwrap();
|
|
|
|
REGISTRY.register(Box::new(REMINDER_FAIL_COUNTER.clone())).unwrap();
|
|
|
|
REGISTRY.register(Box::new(COMMAND_COUNTER.clone())).unwrap();
|
2024-03-24 20:23:16 +00:00
|
|
|
}
|