Chain filters in logstash

Marcin picture Marcin · Nov 27, 2015 · Viewed 9.9k times · Source

Is it possible to use logstash filters in sequence? For example I want to parse message into json then newly created field split by character.

input => filter => filter => output => elasticsearch

Answer

yyk picture yyk · Nov 28, 2015

Yes, it's mentioned in the official doc.

If you specify multiple filters, they are applied in the order of their appearance in the configuration file.