add node exporter to all deployment systems

This commit is contained in:
oxapentane - 2023-05-04 17:00:51 +02:00
parent 4273af69ce
commit 84582cdb63
Signed by: oxapentane
GPG Key ID: 91FA5E5BF9AA901C
2 changed files with 0 additions and 18 deletions

View File

@ -15,6 +15,5 @@
./website.nix
./trekkie.nix
./chemo.nix
./prometheus-exporter.nix
];
}

View File

@ -1,17 +0,0 @@
{ self, config, ... }:
{
# metrics exporter
services.prometheus.exporters = {
node = {
enable = true;
port = 8119;
listenAddress = config.deployment-TLMS.net.wg.addr4;
enabledCollectors = [
"systemd"
];
};
};
# log exporter
}