mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-01-19 09:16:46 +01:00
17 lines
245 B
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"
|
||
|
];
|
||
|
}
|
||
|
];
|
||
|
}];
|
||
|
}
|