WIP prometheus testing

This commit is contained in:
Nydragon 2024-09-23 17:38:20 +02:00
parent 753377fc3f
commit 884d2c3282
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 44 additions and 1 deletions

View file

@ -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 [

View file

@ -11,6 +11,8 @@
./disk-config.nix
../../modules
./adguard.nix
../../modules/nix
./prometheus.nix
];
age.secrets.navidrome.file = ../../secrets/navidrome.age;

35
hosts/shan/prometheus.nix Normal file
View file

@ -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;
};
};
};
}