From 883ed7fc12f7887652598d94cd0c53753ff4e920 Mon Sep 17 00:00:00 2001 From: Ittihadyya Date: Fri, 20 Dec 2024 18:15:40 +0200 Subject: [PATCH] finish up monitoring branhc --- services/monitoring/prometheus.mod.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/monitoring/prometheus.mod.nix b/services/monitoring/prometheus.mod.nix index b31459e..f862814 100644 --- a/services/monitoring/prometheus.mod.nix +++ b/services/monitoring/prometheus.mod.nix @@ -12,7 +12,7 @@ } ]; glucose.modules = [ - ({ + { services.prometheus = { enable = true; port = 6750; @@ -23,12 +23,12 @@ job_name = "devices"; static_configs = [ { - targets = [ "10.24.1.4:6703" "10.24.1.9:6703" "10.24.1.16:6703" "10.24.1.225:6703" "10.24.1.196:6703" ]; + targets = ["10.24.1.4:6703" "10.24.1.9:6703" "10.24.1.16:6703" "10.24.1.225:6703" "10.24.1.196:6703"]; } ]; } ]; }; - }) + } ]; }