I am wondering what the best approach to take with my Logstash Grok filters. I have some filters that are for specific log entries, and won\'t apply to all entries. The on
You can also add tag_on_failure => [] to your grok stanza like so:
tag_on_failure => []
grok { match => ["context", "\"tags\":\[%{DATA:apptags}\]"] tag_on_failure => [ ] }
grok will still fail, but will do so without adding to the tags array.