Files
pvv-nixos-config/hosts/ildkule/services/monitoring/prometheus/phpfpm.nix
T

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