infrastructure/depot/services/node-exporter/default.nix
2021-08-09 02:41:43 +01:00

15 lines
228 B
Nix

{ config, ... }:
{
kw.fw.private.tcp.ports = [ 9002 ];
services.prometheus = {
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
port = 9002;
};
};
};
}