Access Log Parser
Setup
Add the library as a dependency to your mix.exs file:
defp deps do
[
# ...
{:accesslog_parser, "~> 0.2.0"},
# ...
]
endUsage
Grab a line from your accesslog and parse it using AccessLogParser.parse/2.
See the module itself for details on supported formats and how to parse them.
Benchmark
A (minimal) benchmark script is included. Please refer to the Mixfile or mix help output for the name.