Files
pvv-nixos-config/hosts/ildkule/services/monitoring/prometheus/exim.nix
T

13 lines
215 B
Nix

{ ... }:
{
services.prometheus.scrapeConfigs = [{
job_name = "exim";
scrape_interval = "15s";
scheme = "http";
static_configs = [{
targets = [ "microbel.pvv.ntnu.no:9636" ];
}];
}];
}