@cryptotaxi247 / infra-1 / commits / 61a83e18

monitoring: scrape metrics of new hydra queue runner

The new queue runner only exposes its prometheus metrics on its localhost REST listener, so since the switch from the old queue runner its metrics are no longer collected; the existing scrape job still points at the old runner's now-dead 9198 port. Publish the metrics through the existing queue-runner.hydra.nixos.org nginx vhost and add a scrape job for it on pluto.

Jörg Thalheim committed Jun 17, 2026 at 00:02 UTC 61a83e18de7b748864390307e104dd0af75cd812
1 file changed +2 -2
build/pluto/prometheus/exporters/hydra.nix
+2 -2
@@ -37,8 +37,8 @@
37 {
38 job_name = "hydra_queue_runner";
39 metrics_path = "/metrics";
40 - scheme = "http";
41 - static_configs = [ { targets = [ "hydra.nixos.org:9198" ]; } ];
40 + scheme = "https";
41 + static_configs = [ { targets = [ "queue-runner.hydra.nixos.org:443" ]; } ];
42 }
43 {
44 job_name = "hydra_queue_runner_dev";