dataset/seed/prometheus/templates/prometheus

10 lines
245 B
Text
Raw Normal View History

2023-06-23 08:12:05 +02:00
# Additional command-line arguments to pass to the server.
#>GNUNUX
#ARGS="--web.listen-address=127.0.0.1:9090"
2023-07-31 15:30:32 +02:00
ARGS="
{%- for address in general.prometheus.listen_addresses -%}
--web.listen-address={{ address }}:9090
{%- endfor -%}
"
2023-06-23 08:12:05 +02:00
#<GNUNUX