server-configs/machines/gerd/services/monitoring/mon-node-exporter.nix
2025-03-14 17:23:28 +01:00

17 lines
355 B
Nix

{ config, lib, ... }:
{
services.prometheus.exporters.node = {
enable = true;
listenAddress = "localhost";
};
services.prometheus.scrapeConfigs = [
{
job_name = "node-exporter";
static_configs = [{
targets = [ "localhost:${builtins.toString config.services.prometheus.exporters.node.port}"];
}];
}
];
}