From 53b1264c447e2da7e9f1ea400b878716387bf354 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Mon, 3 Nov 2025 23:51:20 +0100 Subject: [PATCH] clanServices/prometheus: fix IPv6 address brackets --- clanServices/prometheus/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clanServices/prometheus/default.nix b/clanServices/prometheus/default.nix index d034f42..58762f3 100644 --- a/clanServices/prometheus/default.nix +++ b/clanServices/prometheus/default.nix @@ -51,7 +51,7 @@ targetHost = targetConfig.clan.core.vars.generators.zerotier.files.zerotier-ip.value; in [ - "${targetHost}:${toString targetConfig.services.prometheus.exporters.${exporter}.port}" + "[${targetHost}]:${toString targetConfig.services.prometheus.exporters.${exporter}.port}" ]; labels.instance = machineName; }) machinesWithExporter;