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
As we live in era where containers taking over place, it would be nice to assign configuration to environment variable, may be $LOGSTASH, and make sure logstash consumes it when no configuration file (-f) or configuration string (-e) is provided. The reason is pretty simple - I don't want to build my own image from base one just to inject some file nor I want to mess around with volumes nor I'm happy with -e because you end up with a long unreadable line and at the same, when you use docker compose for instance, you can come up with (take a look at magical pipe | supported by YAML):
As we live in era where containers taking over place, it would be nice to assign configuration to environment variable, may be
$LOGSTASH
, and make sure logstash consumes it when no configuration file (-f
) or configuration string (-e
) is provided. The reason is pretty simple - I don't want to build my own image from base one just to inject some file nor I want to mess around with volumes nor I'm happy with-e
because you end up with a long unreadable line and at the same, when you use docker compose for instance, you can come up with (take a look at magical pipe|
supported by YAML):Which is pretty readable and allows one to use existing official image.
The text was updated successfully, but these errors were encountered: