dot_testing/boxes/netbox/prometheus.nix

14 lines
237 B
Nix
Raw Normal View History

2024-10-28 00:10:19 -05:00
{ lib, config, pkgs, ... }:
{
services.prometheus = {
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
listenAddress = "10.100.0.1";
port = 9002;
};
};
};
}