pluto: Scrape PG exporter on tracker.security.n.o
Dionysis Grigoropoulos committed
Jul 4, 2025 at 15:10 UTC
fc3319919eb085bf11cd499a72309d91c3fba80d
1 file changed
+9
-2
build/pluto/prometheus/exporters/postgresql.nix
+9
-2
@@ -1,9 +1,16 @@
1
{
2
services.prometheus.scrapeConfigs = [
3
{
4
- job_name = "haumea-postgresql";
4
+ job_name = "postgresql";
5
metrics_path = "/metrics";
6
- static_configs = [ { targets = [ "haumea:9187" ]; } ];
6
+ static_configs = [
7
+ {
8
+ targets = [
9
+ "haumea:9187"
10
+ "tracker.security.nixos.org:9187"
11
+ ];
12
+ }
13
+ ];
14
}
15
];
16
}