about summary refs log tree commit diff
path: root/hosts/common/server/monitoring.nix
blob: 82cef4db3848cff7641821e5fb9427ab53ea8b48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, lib, ... }:

{
  services.prometheus = {
    exporters = {
      node = {
        enable = true;
        enabledCollectors = [ "tcpstat" "systemd" "interrupts" ];
      };
    };
  };
}