ildkule/prometheus/exim: make scheme explicit

This commit is contained in:
h7x4
2026-06-03 13:35:13 +09:00
parent 56906241f6
commit 3386153b8b
@@ -1,14 +1,12 @@
{ ... }: { ... }:
{ {
services.prometheus = { services.prometheus.scrapeConfigs = [{
scrapeConfigs = [ job_name = "exim";
{ scrape_interval = "15s";
job_name = "exim"; scheme = "http";
scrape_interval = "15s";
static_configs = [{ static_configs = [{
targets = [ "microbel.pvv.ntnu.no:9636" ]; targets = [ "microbel.pvv.ntnu.no:9636" ];
}]; }];
} }];
];
};
} }