diff options
author | Vika <vika@fireburn.ru> | 2025-04-20 11:10:45 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2025-04-20 11:10:45 +0300 |
commit | 3e30368776b73c50f703454700555e91985070a2 (patch) | |
tree | ec68f1903fa44f18874552a0e54fb9b050ce3b14 /src | |
parent | 95467cb537a25cf286cc66df4915d91723d786aa (diff) | |
download | kittybox-3e30368776b73c50f703454700555e91985070a2.tar.zst |
remove the prometheus crate, as it was unused
Change-Id: Icae13f2daf5b584b70149ac5dcce342461b96815
Diffstat (limited to 'src')
-rw-r--r-- | src/metrics.rs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/metrics.rs b/src/metrics.rs deleted file mode 100644 index e13fcb9..0000000 --- a/src/metrics.rs +++ /dev/null @@ -1,21 +0,0 @@ -#![allow(unused_imports, dead_code)] -use async_trait::async_trait; -use lazy_static::lazy_static; -use prometheus::Encoder; -use std::time::{Duration, Instant}; - -// TODO: Vendor in the Metrics struct from warp_prometheus and rework the path matching algorithm - -pub fn metrics(path_includes: Vec<String>) -> warp::log::Log<impl Fn(warp::log::Info) + Clone> { - let metrics = warp_prometheus::Metrics::new(prometheus::default_registry(), &path_includes); - warp::log::custom(move |info| metrics.http_metrics(info)) -} - -pub fn gather() -> Vec<u8> { - let mut buffer: Vec<u8> = vec![]; - let encoder = prometheus::TextEncoder::new(); - let metric_families = prometheus::gather(); - encoder.encode(&metric_families, &mut buffer).unwrap(); - - buffer -} |