From 815b764c4ea46e47ccec2d03112725822dda61f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Barnouin?= Date: Thu, 3 Apr 2025 13:59:14 +0200 Subject: [PATCH] Add prometheus crowdsec watcher --- services/grafana/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/services/grafana/default.nix b/services/grafana/default.nix index 785c19c..0bf3000 100644 --- a/services/grafana/default.nix +++ b/services/grafana/default.nix @@ -163,6 +163,14 @@ in { } ]; } + { + job_name = "crowdsec_nextcloud"; + static_configs = [ + { + targets = ["192.168.1.45:6060"]; + } + ]; + } { job_name = "deluge"; static_configs = [ @@ -179,6 +187,14 @@ in { } ]; } + { + job_name = "crowdsec_jellyfin"; + static_configs = [ + { + targets = ["192.168.1.42:6060"]; + } + ]; + } ]; }; services.loki = {