loganalyst
loganalyst OPTIONS < LOG_FILEPATH
Log Analyst analyzes NginX logs entries through aggregating counts.
It works on a stream of entries, one per lines. It supports various
options such as filter using an optional regex (--regexp
or
-r
). The analyst corresponds the columns defined in the
NginX access log aggregated with counts. The intent is to be able to
quickly scan an access log file for spikes or patterns.
To analyze log entries with default summary analysis:
loganalyst < logfile.log
To analyze log entries with custom regex and specific analyses:
loganalyst --regexp ".*.zip" --analysis ip,agent --output yaml < logfile.log
To analyze log entries for endpoint analysis only:
loganalyst --analysis endpoint < logfile.log
Note: When specifying a regex pattern, make sure to
escape special characters properly. For example, use .
to
match a literal dot.