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
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
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.
Yes. In filter conf file keep "field split by character" filter below the "json parsor" filter.
© 2022 - 2024 — McMap. All rights reserved.