From 6d8a1a320187fe51a8a6d03ec043d9a656bce830 Mon Sep 17 00:00:00 2001 From: Alexandre LUCAZEAU Date: Wed, 1 Jun 2022 20:21:07 +0000 Subject: [PATCH] modified: grafana.nix - ADD nextcloud server --- modules/grafana.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/grafana.nix b/modules/grafana.nix index 7f63bb5..1b58e25 100644 --- a/modules/grafana.nix +++ b/modules/grafana.nix @@ -25,6 +25,12 @@ static_configs = [{ targets = [ "127.0.0.1:${toString config.services.prometheus.exporters.node.port}" ]; }]; + } + { + job_name = "nextcloud"; + static_configs = [{ + targets = [ "192.168.10.114:${toString config.services.prometheus.exporters.node.port}" ]; + }]; } ]; };