mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-06-03 19:52:07 +02:00
13 lines
215 B
Nix
13 lines
215 B
Nix
{ ... }:
|
|
{
|
|
services.prometheus.scrapeConfigs = [{
|
|
job_name = "exim";
|
|
scrape_interval = "15s";
|
|
scheme = "http";
|
|
|
|
static_configs = [{
|
|
targets = [ "microbel.pvv.ntnu.no:9636" ];
|
|
}];
|
|
}];
|
|
}
|