WIP: gitea metrics
Eval nix flake / evals (push) Failing after 1m40s Details

This commit is contained in:
Oystein Kristoffer Tveit 2024-04-11 10:47:49 +02:00
parent c90dda4f85
commit 0625b16e50
2 changed files with 22 additions and 0 deletions

View File

@ -45,6 +45,7 @@ in {
DISABLE_GRAVATAR = true; DISABLE_GRAVATAR = true;
ENABLE_FEDERATED_AVATAR = false; ENABLE_FEDERATED_AVATAR = false;
}; };
metrics.ENABLED = true;
actions.ENABLED = true; actions.ENABLED = true;
}; };
}; };
@ -61,6 +62,15 @@ in {
client_max_body_size 512M; client_max_body_size 512M;
''; '';
}; };
locations."/metrics" = {
proxyPass = "http://unix:${cfg.settings.server.HTTP_ADDR}";
extraConfig = ''
allow ${values.hosts.ildkule.ipv4};
allow ${values.hosts.ildkule.ipv6};
deny all;
'';
};
}; };
networking.firewall.allowedTCPPorts = [ sshPort ]; networking.firewall.allowedTCPPorts = [ sshPort ];

View File

@ -0,0 +1,12 @@
{ values, ... }:
{
# Gitea already exports at /metrics
services.prometheus.scrapeConfigs = [{
job_name = "gitea";
scrape_interval = "15s";
metrics_path = "/metrics/gitea";
static_configs = [{
targets = [ "git.pvv.ntnu.no:443" ];
}];
}];
}