feat: only ping www.noisebridge.net

This commit is contained in:
Jet 2026-03-31 18:59:18 -07:00
parent 99ab061dfe
commit 3a95a5668e
No known key found for this signature in database

View file

@ -104,6 +104,10 @@ let
name = "Noisebridge Mailing List"; name = "Noisebridge Mailing List";
target = "https://lists.noisebridge.net"; target = "https://lists.noisebridge.net";
} }
{
name = "Noisebridge Website";
target = "https://www.noisebridge.net/";
}
{ {
name = "Noisebridge Safespace"; name = "Noisebridge Safespace";
target = "https://safespace.noisebridge.net"; 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 = [ tcp60Monitors = [
{ {
name = "SMTP (Standard)"; name = "SMTP (Standard)";
@ -221,7 +210,6 @@ in
services.prometheus.scrapeConfigs = lib.mkAfter [ services.prometheus.scrapeConfigs = lib.mkAfter [
(mkBlackboxJob "blackbox-http-60s" "http_2xx" "60s" http60Monitors) (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-tcp-60s" "tcp_connect" "60s" tcp60Monitors)
(mkBlackboxJob "blackbox-icmp-60s" "icmp" "60s" icmp60Monitors) (mkBlackboxJob "blackbox-icmp-60s" "icmp" "60s" icmp60Monitors)
]; ];