Files
pvv-nixos-config/hosts/ildkule/services/monitoring/prometheus/phpfpm.nix
T
oysteikt 7c8d5bae3a
Eval nix flake / evals (push) Successful in 6m55s
ildkule/prometheus/phpfpm: scrape from bekkalokk
2026-07-25 22:19:38 +09:00

16 lines
297 B
Nix

{ ... }:
{
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" ];
}
];
}];
}