about summary refs log tree commit diff
path: root/modules/services/monitoring
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-09 18:47:24 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-09 18:47:24 -0700
commit7f8b7e24fe67cfdb407f1415d6e7b223d2600f58 (patch)
tree5d72336b99adee6c7216ec7fa681977c185cdaba /modules/services/monitoring
parenttahoe: move the initrd code (diff)
downloadworld-7f8b7e24fe67cfdb407f1415d6e7b223d2600f58.tar.gz
profiles/nginx: move common configuration to a profile
Both tahoe and carmel are using nginx, and we can simplify the
configuration by moving common parts to the profile and have these hosts
import it.
Diffstat (limited to 'modules/services/monitoring')
-rw-r--r--modules/services/monitoring/prometheus.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/services/monitoring/prometheus.nix b/modules/services/monitoring/prometheus.nix
index 916302b..45fa22c 100644
--- a/modules/services/monitoring/prometheus.nix
+++ b/modules/services/monitoring/prometheus.nix
@@ -84,6 +84,17 @@ in
 
       scrapeConfigs = [
         {
+          job_name = "nginx";
+          static_configs = [{
+            targets = [
+              "127.0.0.1:${
+              toString config.services.prometheus.exporters.nginx.port
+            }"
+            ];
+            labels = { instance = config.networking.hostName; };
+          }];
+        }
+        {
           job_name = "blackbox-ping";
           metrics_path = "/probe";
           params = { module = [ "icmp" ]; };