ildkule/prometheus/phpfpm: scrape from bekkalokk
Eval nix flake / evals (push) Successful in 6m55s

This commit is contained in:
2026-07-25 22:19:14 +09:00
parent aef9ee0289
commit 7c8d5bae3a
2 changed files with 16 additions and 0 deletions
@@ -7,6 +7,7 @@ in {
./machines.nix
./matrix-synapse.nix
./mysqld.nix
./phpfpm.nix
./postgres.nix
];
@@ -0,0 +1,15 @@
{ ... }:
{
services.prometheus.scrapeConfigs = [{
job_name = "phpfpm";
scheme = "https";
metrics_path = "/prometheus-php-fpm-exporter/metrics";
static_configs = [
{
labels.hostname = "bekkalokk";
targets = [ "www.pvv.ntnu.no:443" ];
}
];
}];
}