ildkule/prometheus/exim: init

This commit is contained in:
2025-08-01 22:46:55 +02:00
parent f5fed06381
commit 0600fce2ca
2 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
{ ... }:
{
services.prometheus = {
scrapeConfigs = [
{
job_name = "exim";
scrape_interval = "15s";
static_configs = [{
targets = [ "microbel.pvv.ntnu.no:9636" ];
}];
}
];
};
}