main
nix 9 lines 199 Bytes
Raw
1 {
2 services.prometheus.scrapeConfigs = [
3 {
4 job_name = "sql";
5 metrics_path = "/metrics";
6 static_configs = [ { targets = [ "tracker.security.nixos.org:9237" ]; } ];
7 }
8 ];
9 }