Chainsaw seems to be a very powerful logviewer. However, I could not find the correct settings to open a httpd standard logfile.
A line in the log looks like
123.65.15.255 - - [04/Jan/2015:03:38:12 +0100] "GET /index.html
HTTP/1.1" 200 - "-" "Mozilla/5.0 (compatible)"
Does anybody know what I need to set in "Log File Format type and format?
I tried with pattern
%X{IP} %X{ident} %X{UserID} [%d] %m
and timestamp formatdd/MMM/yyyy:HH:mm:ss Z
, but the parsing was not correct (date and message are wrong), I don't know why. I personally prefer using the logviewer "LogMX": I tried the same pattern in LogMX and it works like a charm:%X{IP} %X{ident} %X{UserID} [%d{dd/MMM/yyyy:HH:mm:ss Z}] %m
(here, the date format is included in the pattern):If you want, you can also parse each specific field after "GET": HTTP status code, user-agent string, ... to have a new column for each field. Also see: