1
0
Fork 0
pvv-nixos-config/hosts/ildkule/services/monitoring/prometheus/gitea.nix

17 lines
245 B
Nix

{ ... }:
{
services.prometheus.scrapeConfigs = [{
job_name = "gitea";
scrape_interval = "60s";
scheme = "https";
static_configs = [
{
targets = [
"git.pvv.ntnu.no:443"
];
}
];
}];
}