You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 is
flags
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.
The text was updated successfully, but these errors were encountered: