From 8de4b701607a9b9e2e309cdf13a23412d1f5eb9c Mon Sep 17 00:00:00 2001
From: Florian Sesser <florian@private.storage>
Date: Wed, 7 Feb 2024 14:47:10 +0000
Subject: [PATCH] node-exporter:  Add exporters that we had to disable when we
 were running on very old software

---
 nixos/modules/monitoring/exporters/node.nix | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/nixos/modules/monitoring/exporters/node.nix b/nixos/modules/monitoring/exporters/node.nix
index 27129a26..8f183c11 100644
--- a/nixos/modules/monitoring/exporters/node.nix
+++ b/nixos/modules/monitoring/exporters/node.nix
@@ -40,16 +40,16 @@ in {
       "netclass"
       "netdev"
       "netstat"
-      #"rapl" # not in nixpkgs 19.09
+      "rapl"
       "sockstat"
-      #"softnet" # not in nixpkgs 19.09
+      "softnet"
       "stat"
       "systemd"
       "textfile"
       "textfile.directory ${cfg.textfiles-directory}"
-      #"thermal_zone" # not in nixpkgs 19.09
+      "thermal_zone"
       "time"
-      #"udp_queues" # not in nixpkgs 19.09
+      "udp_queues"
       "uname"
       "vmstat"
     ] ++ optionals (!config.boot.isContainer) [
-- 
GitLab