Hello, I got an error when using the latest version of process-exporter:
./process-exporter
Failed to start the server: no web listen address or systemd socket flag specified
The default value of -web.listen-address is :9256, however, this parameter does not seem to be passed in correctly, and even if I explicitly specify it on the command line, this error still occurs.
The location where I observed the error return is
Hello, I got an error when using the latest version of process-exporter:
The default value of
-web.listen-address
is:9256
, however, this parameter does not seem to be passed in correctly, and even if I explicitly specify it on the command line, this error still occurs. The location where I observed the error return isflags
are specified inprocess-exporter/cmd/process-exporter/main.go
Only WebConfigFile is set here, but WebListenAddresses is not set. WebListenAddresses is empty by default, so this error is triggered.