doc/manual: document queue-runner prometheus exporter configuration

This commit is contained in:
Cole Helbling 2022-04-06 11:41:18 -07:00
parent edf3c348f2
commit 15e8fa8aff

View file

@ -102,6 +102,22 @@ in the hydra configuration file, as below:
</hydra_notify>
```
hydra-queue-runner's Prometheus service
---------------------------------------
hydra-queue-runner supports running a Prometheus webserver for metrics. The
exporter's address defaults to exposing on `127.0.0.1:9198`, but is also
configurable through the hydra configuration file and a command line argument,
as below. A port of `:0` will make the exposer choose a random, available port.
```conf
queue_runner_exporter_address = 127.0.0.1:9198
```
```shell
$ hydra-queue-runner --prometheus-address 127.0.0.1:9198
```
Using LDAP as authentication backend (optional)
-----------------------------------------------