A simple log analysing tool written in Go
I written a very simple CLI tool in Go that takes in a log file and spits out statistic result of how many logs occurrence of each log level. It basically outputs a table with count of each log level occurrences.
For instance, a standard log file will have INFO level logs in addition to ERROR level for any faults and WARN level for warning signs plus maybe DEBUG or TRACE for more verbose information.
Pre-requisites
You will need Go installed.