ops/nixos/lib/common: add systemd collector to all systems

This commit is contained in:
Luke Granger-Brown 2021-01-07 10:01:36 +00:00
parent aba7285824
commit 6b95f54ca7

View file

@ -147,6 +147,9 @@ in
);
});
services.prometheus.exporters.node.enable = true;
services.prometheus.exporters.node = {
enable = true;
enabledCollectors = [ "systemd" ];
};
};
}