1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# Set the command-line arguments to pass to the server.
ARGS=''
#Usage of prometheus-apache-exporter:
# -insecure
# Ignore server certificate if using https.
# -log.format value
# Set the log target and format. Example:
# "logger:syslog?appname=bob&local=7" or "logger:stdout?json=true"
# (default "logger:stderr")
# -log.level value
# Only log messages with the given severity or above. Valid levels:
# [debug, info, warn, error, fatal] (default "info")
# -scrape_uri string
# URI to apache stub status page. (default
# "http://localhost/server-status/?auto")
# -telemetry.address string
# Address on which to expose metrics. (default ":9117")
# -telemetry.endpoint string
# Path under which to expose metrics. (default "/metrics")
#
|