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
Due to elastic/go-ucfg#132, Beats will fail to parse the configuration when the value of a variable from the keystore or the environment starts with [, {, " and '.
With:
output.elasticsearch:
username: "${MYUSER}"
the following fails:
$ MYUSER='"hello' ./filebeat run -e
Exiting: error initializing publisher: Missing " to close string when parsing '"hello' accessing 'output.elasticsearch.username' (source:'filebeat.yml')$ MYUSER='{user}' ./filebeat run -eExiting: error initializing publisher: expected ':' when parsing '{user}' accessing 'output.elasticsearch.username' (source:'filebeat.yml')
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Due to elastic/go-ucfg#132, Beats will fail to parse the configuration when the value of a variable from the keystore or the environment starts with
[
,{
,"
and'
.With:
the following fails:
The text was updated successfully, but these errors were encountered: