mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-08-06 13:49:34 +02:00
15 lines
242 B
Nix
15 lines
242 B
Nix
{ ... }:
|
|
{
|
|
services.prometheus = {
|
|
scrapeConfigs = [
|
|
{
|
|
job_name = "exim";
|
|
scrape_interval = "15s";
|
|
static_configs = [{
|
|
targets = [ "microbel.pvv.ntnu.no:9636" ];
|
|
}];
|
|
}
|
|
];
|
|
};
|
|
}
|