diff --git a/modules/blackbox-exporter.nix b/modules/blackbox-exporter.nix index e1b8017..a9b4dac 100644 --- a/modules/blackbox-exporter.nix +++ b/modules/blackbox-exporter.nix @@ -104,6 +104,10 @@ let name = "Noisebridge Mailing List"; target = "https://lists.noisebridge.net"; } + { + name = "Noisebridge Website"; + target = "https://www.noisebridge.net/"; + } { name = "Noisebridge Safespace"; target = "https://safespace.noisebridge.net"; @@ -166,21 +170,6 @@ let } ]; - http600Monitors = [ - { - name = "Noisebridge Wiki"; - target = "https://www.noisebridge.net/"; - } - { - name = "noisebridge.org"; - target = "https://www.noisebridge.org"; - } - { - name = "noisebridge.io"; - target = "https://noisebridge.io"; - } - ]; - tcp60Monitors = [ { name = "SMTP (Standard)"; @@ -221,7 +210,6 @@ in services.prometheus.scrapeConfigs = lib.mkAfter [ (mkBlackboxJob "blackbox-http-60s" "http_2xx" "60s" http60Monitors) - (mkBlackboxJob "blackbox-http-600s" "http_2xx" "600s" http600Monitors) (mkBlackboxJob "blackbox-tcp-60s" "tcp_connect" "60s" tcp60Monitors) (mkBlackboxJob "blackbox-icmp-60s" "icmp" "60s" icmp60Monitors) ];