aboutsummaryrefslogblamecommitdiff
path: root/hosts/common/server/monitoring.nix
blob: 82cef4db3848cff7641821e5fb9427ab53ea8b48 (plain) (tree)
1
2
3
4
5
6
7
8






                           
                                                                 



        
{ config, pkgs, lib, ... }:

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