Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 466 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 466 Bytes

Logstash Combine Filter Plugin

This is a plugin for Logstash.

It is fully free and fully open source. The license is MIT.

Documentation

This filter plugin combines multiple source fields into one array.

Example config

To create an array of source1, source2 and source3 under combine_target

filter {
 combine {
  target => "combine_target"
  sources => ["source1","source2", "source3"]
 }
}