This is a plugin for Logstash.
It is fully free and fully open source. The license is MIT.
This filter plugin combines multiple source fields into one array.
To create an array of source1, source2 and source3 under combine_target
filter {
combine {
target => "combine_target"
sources => ["source1","source2", "source3"]
}
}