main
nix 17 lines 331 Bytes
Raw
1 {
2 services.prometheus.scrapeConfigs = [
3 {
4 job_name = "postgresql";
5 metrics_path = "/metrics";
6 static_configs = [
7 {
8 targets = [
9 "haumea.nixos.org:9187"
10 "mimas.nixos.org:9187"
11 "tracker.security.nixos.org:9187"
12 ];
13 }
14 ];
15 }
16 ];
17 }