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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
245 B
Nix
Raw Normal View History

2024-09-14 20:21:12 +02:00
{ ... }:
{
services.prometheus.scrapeConfigs = [{
job_name = "gitea";
scrape_interval = "60s";
scheme = "https";
static_configs = [
{
targets = [
"git.pvv.ntnu.no:443"
];
}
];
}];
}