Currently the prometheus flags are under the web. prefix:
$ ./beat-exporter -help
Usage of ./beat-exporter:
...
-web.listen-address string
Address to listen on for web interface and telemetry. (default ":9479")
-web.telemetry-path string
Path under which to expose metrics. (default "/metrics")
I propose we put this under prom, and maybe sharpen the language a bit:
$ ./beat-exporter -help
Usage of ./beat-exporter:
...
-prom.port string
Port to listen on for web interface and telemetry. (default "9479") <-- leave out the quote
-prom.path string
Path under which to expose metrics. (default "/metrics")
Currently the prometheus flags are under the
web.
prefix:I propose we put this under
prom
, and maybe sharpen the language a bit:Thoughts?