diff options
author | Rory& <root@rory.gay> | 2024-08-28 22:20:22 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-08-28 22:20:22 +0200 |
commit | 78a17b497576272f8e0ea045a5a44ffcf5516d7d (patch) | |
tree | 6031b6935bdc0db21a7a246dd0c4bb26af719f2f /modules/base-server.nix | |
parent | Monitoring? (diff) | |
download | Rory-Open-Architecture-78a17b497576272f8e0ea045a5a44ffcf5516d7d.tar.xz |
Monitoring fixes
Diffstat (limited to 'modules/base-server.nix')
-rwxr-xr-x | modules/base-server.nix | 90 |
1 files changed, 45 insertions, 45 deletions
diff --git a/modules/base-server.nix b/modules/base-server.nix index 9e248e4..7473513 100755 --- a/modules/base-server.nix +++ b/modules/base-server.nix @@ -81,51 +81,51 @@ hardware.enableRedistributableFirmware = false; services = { - prometheus = { - exporters = { - node = { - enable = true; - port = 9100; - enabledCollectors = [ - #"logind" #too slow - "systemd" - "processes" - "interrupts" - # Testing: - "buddyinfo" - "cgroups" - "ksmd" - "lnstat" - "mountstats" - "network_route" - #"perf" # requires sysctl change - "qdisc" - "sysctl" - "softirqs" - "tcpstat" - ]; - disabledCollectors = [ - "textfile" - "xfs" - "zfs" - "selinux" - "cpufreq" - "btrfs" - "powersupplyclass" - "mdadm" - "tapestats" - "fibrechannel" - "cpu_vulnerabilities" - "watchdog" - "thermal_zone" - "logind" - "nfs" - "nfsd" - "infiniband" - ]; - }; - }; - }; +# prometheus = { +# exporters = { +# node = { +# enable = true; +# port = 9100; +# enabledCollectors = [ +# #"logind" #too slow +# "systemd" +# "processes" +# "interrupts" +# # Testing: +# "buddyinfo" +# "cgroups" +# "ksmd" +# "lnstat" +# "mountstats" +# "network_route" +# #"perf" # requires sysctl change +# "qdisc" +# "sysctl" +# "softirqs" +# "tcpstat" +# ]; +# disabledCollectors = [ +# "textfile" +# "xfs" +# "zfs" +# "selinux" +# "cpufreq" +# "btrfs" +# "powersupplyclass" +# "mdadm" +# "tapestats" +# "fibrechannel" +# "cpu_vulnerabilities" +# "watchdog" +# "thermal_zone" +# "logind" +# "nfs" +# "nfsd" +# "infiniband" +# ]; +# }; +# }; +# }; promtail = { enable = true; configuration = { |