From 884d2c328261d837f1cd9bacc8d9f3a1103c033c Mon Sep 17 00:00:00 2001 From: Nydragon Date: Mon, 23 Sep 2024 17:38:20 +0200 Subject: [PATCH] WIP prometheus testing --- hosts/raptus/configuration.nix | 8 +++++++- hosts/shan/configuration.nix | 2 ++ hosts/shan/prometheus.nix | 35 ++++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 hosts/shan/prometheus.nix diff --git a/hosts/raptus/configuration.nix b/hosts/raptus/configuration.nix index 42042ae..9ea8451 100644 --- a/hosts/raptus/configuration.nix +++ b/hosts/raptus/configuration.nix @@ -33,6 +33,7 @@ in networking.firewall = lib.mkForce { enable = true; allowedTCPPorts = [ + 22 80 # for acme challenges 443 3000 # forgejo @@ -61,9 +62,14 @@ in ports = [ 56528 ]; }; - services.endlessh = { + services.endlessh-go = { enable = true; port = 22; + prometheus = { + enable = true; + listenAddress = "127.0.0.1"; + port = 9090; + }; }; environment.systemPackages = map lib.lowPrio [ diff --git a/hosts/shan/configuration.nix b/hosts/shan/configuration.nix index 2dbfb47..db7bd06 100644 --- a/hosts/shan/configuration.nix +++ b/hosts/shan/configuration.nix @@ -11,6 +11,8 @@ ./disk-config.nix ../../modules ./adguard.nix + ../../modules/nix + ./prometheus.nix ]; age.secrets.navidrome.file = ../../secrets/navidrome.age; diff --git a/hosts/shan/prometheus.nix b/hosts/shan/prometheus.nix new file mode 100644 index 0000000..244b193 --- /dev/null +++ b/hosts/shan/prometheus.nix @@ -0,0 +1,35 @@ +{ + ... +}: +let + port = 9090; + grafanaPort = 3000; +in +{ + services.prometheus = { + enable = true; + inherit port; + scrapeConfigs = [ + { + job_name = "endlessh-go"; + static_configs = [ { targets = [ "raptus:9090" ]; } ]; + } + ]; + }; + + networking.firewall.allowedTCPPorts = [ + port + grafanaPort + ]; + + services.grafana = { + enable = true; + settings = { + analytics.enabled = false; + server = { + http_addr = "0.0.0.0"; + http_port = grafanaPort; + }; + }; + }; +}