diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-12 14:45:17 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-12 14:45:17 -0700 |
commit | 83d862a60414b18e03b24c1e5ac198bf4c5bf662 (patch) | |
tree | 9649ab7331bada6fdc7887b2baa45b0fa203f341 /profiles/monitoring | |
parent | hosts/carmel: fix proxy_pass configuration (diff) | |
download | world-83d862a60414b18e03b24c1e5ac198bf4c5bf662.tar.gz |
profiles/monitoring: move node exporter to a profile
Diffstat (limited to 'profiles/monitoring')
-rw-r--r-- | profiles/monitoring/exporter.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/profiles/monitoring/exporter.nix b/profiles/monitoring/exporter.nix new file mode 100644 index 0000000..ded6423 --- /dev/null +++ b/profiles/monitoring/exporter.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + services.prometheus.exporters.node = { + enable = true; + enabledCollectors = [ "tcpstat" "systemd" "interrupts" ]; + }; +} |