João Duarte
João Duarte
Thanks it does seem to be a different error, or at least in a different section of the code. The initial error was at converge_state ``` 'opt.logstash.logstash_minus_core.lib.logstash.agent.RUBY$block$converge_state$2(/opt/logstash/logstash-core/lib/logstash/agent.rb:386)', 'org.jruby.runtime.CompiledIRBlockBody.callDirect(CompiledIRBlockBody.java:141)', 'org.jruby.runtime.IRBlockBody.call(IRBlockBody.java:64)', 'org.jruby.runtime.IRBlockBody.call(IRBlockBody.java:58)',...
this has been implemented in https://github.com/logstash-plugins/logstash-filter-mutate/pull/84
I may have closed this too soon. it seems this feature is essentially a rename + delete: ``` mutate { copy => { "syslog" => "source" } remove_field => ["syslog"]...
ah I missed a few use cases: - moving a nested structured to the root of the event (the copy operation doesn't seem to support moving to root) - resetting...
sorry, I didn't explain myself properly. I meant to say that currently the features requested in #90 aren't fulfilled in master because, although the plugin now supports copy and remove,...
The issue has to do with a change in behaviour introduced by https://github.com/elastic/logstash/pull/16026, which fixed the ordering of variable access when the same key exists in as an environment variable...
``` logstash | 2024/10/09 05:30:54 Setting 'xpack.monitoring.elasticsearch.password' from environment. ``` the password seems to be detected correctly from the environment variables, can you show how the docker image is being...
The most obvious answer here comes from the deprecation (or not) of these modules in 9.0.0. If there's messaging on the filebeat and winlogbeat that they're deprecated in 8.x and...
I believe we're in a good state in regards to catching the error situations but I'd like to improve the wording and content of the errors presented to the user,...
Finally the biggest elephant in the room is not being able to point to right conditional had the issue. Did you investigate on the effort required to add that? It's...