prometheus: refer to haumea, pluto by fqdn
Martin Weinelt committed
Sep 21, 2025 at 05:00 UTC
88c3ac6f9fc2aeff894b5556a850cc4234c7d91b
4 files changed
+15
-7
build/pluto/prometheus/exporters/nixos.nix
+6
-2
@@ -11,11 +11,15 @@
11
}
12
{
13
labels.role = "monitoring";
14
- targets = [ "pluto:9300" ];
14
+ targets = [
15
+ "pluto.nixos.org:9300"
16
+ ];
17
}
18
{
19
labels.role = "database";
18
- targets = [ "haumea:9300" ];
20
+ targets = [
21
+ "haumea.nixos.org:9300"
22
+ ];
23
}
24
];
25
}
build/pluto/prometheus/exporters/node.nix
+6
-2
@@ -14,11 +14,15 @@
14
}
15
{
16
labels.role = "database";
17
- targets = [ "haumea:9100" ];
17
+ targets = [
18
+ "haumea.nixos.org:9100"
19
+ ];
20
}
21
{
22
labels.role = "monitoring";
21
- targets = [ "pluto:9100" ];
23
+ targets = [
24
+ "pluto.nixos.org:9100"
25
+ ];
26
}
27
{
28
labels.role = "services";
build/pluto/prometheus/exporters/postgresql.nix
+1
-1
@@ -6,7 +6,7 @@
6
static_configs = [
7
{
8
targets = [
9
- "haumea:9187"
9
+ "haumea.nixos.org:9187"
10
"tracker.security.nixos.org:9187"
11
];
12
}
build/pluto/prometheus/exporters/zfs.nix
+2
-2
@@ -10,9 +10,9 @@
10
static_configs = [
11
{
12
targets = [
13
- "haumea:9134"
14
- "pluto:9134"
13
+ "haumea.nixos.org:9134"
14
"mimas.nixos.org:9134"
15
+ "pluto.nixos.org:9134"
16
];
17
}
18
];