summary refs log tree commit diff
path: root/modules/foundation/monitoring
diff options
context:
space:
mode:
Diffstat (limited to 'modules/foundation/monitoring')
-rw-r--r--modules/foundation/monitoring/client.nix14
-rw-r--r--modules/foundation/monitoring/server.nix3
2 files changed, 16 insertions, 1 deletions
diff --git a/modules/foundation/monitoring/client.nix b/modules/foundation/monitoring/client.nix
index 9881f93..6c91639 100644
--- a/modules/foundation/monitoring/client.nix
+++ b/modules/foundation/monitoring/client.nix
@@ -13,6 +13,20 @@
 }:
 
 {
+  foundation.tailnetServices =
+    let
+      exporter = name: "promethes-${name}-exporter";
+    in
+    [
+      (exporter "node")
+      (exporter "nginx")
+      (exporter "nginxlog")
+      # note: it doesn't matter if the service is only enabled conditionally.
+      (exporter "dnsmasq")
+
+      "cadvisor"
+    ];
+
   services = {
     prometheus.exporters = {
       node = {
diff --git a/modules/foundation/monitoring/server.nix b/modules/foundation/monitoring/server.nix
index c4ce4c2..09b8260 100644
--- a/modules/foundation/monitoring/server.nix
+++ b/modules/foundation/monitoring/server.nix
@@ -13,6 +13,7 @@
 {
   foundation.internal.monitoringService = true;
 
+  foundation.tailnetServices = [ "vmagent" ];
   services.vmagent = {
     enable = true;
     remoteWrite.url = "http://${victoriaAddress}/api/v1/write";
@@ -34,7 +35,7 @@
                   instance = name;
                 };
               }
-              ) (builtins.filter filter hosts);
+            ) (builtins.filter filter hosts);
           };
 
           all = x: true;