LogParser.jl is a package for parsing server logs. Currently, only server logs having the Apache Combined format are supported (although Apache Common may parse as well). Additional types of logs may be added in the future as well.
LogParser.jl will attempt to handle the log format even if it is mangled, returning partial matches as best as possible. For example, if the end of the log entry is mangled, you may still get an IP address returned, timestamp and other parts that were able to be parsed.
The API for this package is straightforward:
using LogParser
logarray = [...] #Any AbstractArray of Strings
#Parse file
parsed_vals = parseapachecombined.(logarray)
#Convert to DataFrame if desired
parsed_df = DataFrame(parsed_vals)
LogParser.jl is licensed under the MIT "Expat" license