monitoring: enable additional systemd-exporter collectors
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled

Enables restart-count, file-descriptor-size, and ip-accounting collectors.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-06 21:28:44 +01:00
parent 5d26f52e0d
commit 04a252b857

View File

@@ -13,5 +13,10 @@
services.prometheus.exporters.systemd = {
enable = true;
# Default port: 9558
extraFlags = [
"--systemd.collector.enable-restart-count"
"--systemd.collector.enable-file-descriptor-size"
"--systemd.collector.enable-ip-accounting"
];
};
}