monitoring-client: add prometheus node-exporter

This commit is contained in:
teutat3s 2025-04-16 23:26:43 +02:00
parent e0b37cf230
commit 912f8f39ad
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -26,5 +26,15 @@ in
LoadCredential = "loki_basic_auth_password_file:${config.momo-cloud.monitoring-client.basicAuthPasswordFile}";
};
};
services.prometheus = {
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
port = 9002;
};
};
};
};
}