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
The Elastic Agent ignores the passed in --path.logs=xyz. This can be problematic for read-only environments, for example when running in a read-only docker container where all write actions are expected to go to bind mount only.
Not only the Elastic Agent logs but also the logs of the running sub processes need to be configurable.
This is related to #24160 and also required for 7.13.
update: when passing in --path.logs and --path.config the elastic-agent logs are written to the logs path; this should not be connected to whether or not a config path is passed in.
The logs from the subprocesses are neither in the default log directory nor in the location set with the --path.logs.
The Elastic Agent ignores the passed in
--path.logs=xyz
. This can be problematic for read-only environments, for example when running in a read-onlydocker
container where all write actions are expected to go to bind mount only.Not only the Elastic Agent logs but also the logs of the running sub processes need to be configurable.
This is related to #24160 and also required for
7.13
.Reproduce
exec {{ .BeatName }} container --path.logs ${LOGS_PATH} --path.config ${CONFIG_PATH} $@"
and check that logs are not written to configured location
and check that agent logs are written to configured location, but sub process logs are missing.
This is required for the elastic cloud setup.
I have only checked this with docker.
The text was updated successfully, but these errors were encountered: