# Set the command-line arguments to pass to the server.
# Due to shell scaping, to pass backslashes for regexes, you need to double
# them (\\d for \d). If running under systemd, you need to double them again
# (\\\\d to mean \d), and escape newlines too.
ARGS=""

# prometheus-pushgateway supports the following options:
#
#  --log.format=logfmt
#    Output format of log messages. One of: [logfmt, json].
#  --log.level=info
#    Only log messages with the given severity or above. One of: [debug, info,
#    warn, error].
#  --persistence.file="/var/lib/prometheus/pushgateway.data"
#    File to persist metrics. If empty, metrics are only kept in memory.
#  --persistence.interval=5m
#    The minimum interval at which to write out the persistence file.
#  --push.disable-consistency-check
#    Do not check consistency of pushed metrics. DANGEROUS.
#  --web.config.file=""
#    [EXPERIMENTAL] Path to configuration file that can enable TLS or
#    authentication.
#  --web.enable-admin-api
#    Enable API endpoints for admin control actions.
#  --web.enable-lifecycle
#    Enable shutdown via HTTP request.
#  --web.external-url=
#    The URL under which the Pushgateway is externally reachable.
#  --web.listen-address=":9091"
#    Address to listen on for the web interface, API, and telemetry.
#  --web.local-assets="/usr/share/prometheus/pushgateway"
#    Path to static assets/templates directory.
#  --web.route-prefix=""
#    Prefix for the internal routes of web endpoints. Defaults to the path of
#    --web.external-url.
#  --web.telemetry-path="/metrics"
#    Path under which to expose metrics.
