Remove Field from event by pattern

前端 未结 2 1557
抹茶落季
抹茶落季 2020-12-11 07:42

So I\'m using a standard ELK stack to analyse Apache access logs, which is working well, but I\'m looking to break out URL parameters as fields, using the KV filter, in orde

2条回答
  •  执念已碎
    2020-12-11 07:56

    I know this is dated and has been answered, but for anyone looking into it as of 2017. There's a plugin named prune that allows you to trim based on difference criteria including patterns.

    prune {
        blacklist_names => ["[0-9]+", "unknown_fields", "tags"]
    }
    

提交回复
热议问题