Hi, I'm trying to overwrite the output of filebeat.
Motivation is based on my idea of avoid at all cost mounting specific files into docker container, so I though of:
~$ docker run --user root -it -v "/var/lib/docker/containers:/var/lib/docker/containers:ro" -v "/var/run/docker.sock:/var/run/docker.sock:ro" docker.elas
tic.co/beats/filebeat:7.0.0 -e -strict.perms=false --E output.console.pretty=true
Exiting: error unpacking config data: more than one namespace configured accessing 'output' (source:'filebeat.yml')
But it complains just like if it the overwrite was not done. This is what documentation says:
Flags:
-E, --E setting=value Configuration overwrite
What am I doing wrong?