From 33649e8a61f37974564659d02cc1b4178e2fdadb Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Wed, 19 Nov 2025 22:53:01 -0600 Subject: [PATCH] Add all harvest hosts --- hosts/hosea/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/hosts/hosea/default.nix b/hosts/hosea/default.nix index edeb068..c4e5ceb 100644 --- a/hosts/hosea/default.nix +++ b/hosts/hosea/default.nix @@ -126,7 +126,16 @@ in scrapeConfigs = [ { job_name = "node stats"; static_configs = [{ - targets = [ "localhost:${toString config.services.prometheus.exporters.node.port}" ]; + targets = [ + "localhost:${toString config.services.prometheus.exporters.node.port}" + "isaiah.shire-zebra.ts.net:${toString config.services.prometheus.exporters.node.port}" + "jeremiah.shire-zebra.ts.net:${toString config.services.prometheus.exporters.node.port}" + "zeke.shire-zebra.ts.net:${toString config.services.prometheus.exporters.node.port}" + "genesis.shire-zebra.ts.net:${toString config.services.prometheus.exporters.node.port}" + "exodus.shire-zebra.ts.net:${toString config.services.prometheus.exporters.node.port}" + "linode.shire-zebra.ts.net:${toString config.services.prometheus.exporters.node.port}" + "vm-gitlab.shire-zebra.ts.net:${toString config.services.prometheus.exporters.node.port}" + ]; }]; } ]; };