Reputation: 31
Using logstash, elasticsearch and kibana I'd like to find the most frequently occurring error strings in some logs. It's quite easy to find the most frequently occurring words in the error messages, or the most frequently occurring checksum of the error strings, but I can't see how to monitor the error strings.
Upvotes: 2
Views: 3537
Reputation: 1618
You can easily perform this task using Kibana 4 table visualization by selecting the terms aggregation over the error string field and using count to count the number of results per each error string.
You can read more about visualizations here:
"https://www.timroes.de/2015/02/07/kibana-4-tutorial-part-3-visualize/"
Upvotes: 1