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
Version: Any filebeat version supporting JSON input
Steps to Reproduce:
json input with events having a tags field as array of string
add additional tags in filebeat configuration to the events
events from configuration file are not applied
Problem is the json parser converts the strings on input to []interface{}, but when adding any new tags, a type check testing for []string is in place only.
The text was updated successfully, but these errors were encountered:
Problem is the json parser converts the strings on input to
[]interface{}
, but when adding any new tags, a type check testing for[]string
is in place only.The text was updated successfully, but these errors were encountered: