homelab/modules/common/monitoring.nix
Lzebulon a6931fbc4c
All checks were successful
/ check (push) Successful in 25s
feature: add options to node exporter
2025-11-23 18:29:45 +01:00

14 lines
257 B
Nix

{ ... }:
{
services.prometheus.exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
extraFlags = [
"--collector.ethtool"
"--collector.softirqs"
"--collector.tcpstat"
];
};
};
}