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
This plugin decodes the given field from the payload and creates the event with @metadata set to false, but then throws a runtime exception when this plugin attempts to add key/value pairs to the @metadata:
org.jruby.exceptions.NoMethodError: (NoMethodError) undefined method `[]=' for false:FalseClass
at [${LOGSTASH_HOME}].vendor.bundle.jruby.$2_dot_5_dot_0.gems.logstash_minus_input_minus_beats_minus_6_dot_0_dot_9_minus_java.lib.logstash.inputs.beats.message_listener.onNewMessage(${LOGSTASH_HOME}/vendor/bundle/jruby/2.5.0/gems/logstash-input-beats-6.0.9-java/lib/logstash/inputs/beats/message_listener.rb:34) ~[?:?]
I believe we should guard against improper use of reserved fields, or at least log a warning. A separate issue around documenting reserved fields may be a useful reference: elastic/logstash#11946
The text was updated successfully, but these errors were encountered:
Consider the following
filebeat.yml
, which configures Filebeat to send payloads with the root-level@metadata
field to befalse
.This plugin decodes the given field from the payload and creates the event with
@metadata
set tofalse
, but then throws a runtime exception when this plugin attempts to add key/value pairs to the@metadata
:I believe we should guard against improper use of reserved fields, or at least log a warning. A separate issue around documenting reserved fields may be a useful reference: elastic/logstash#11946
The text was updated successfully, but these errors were encountered: