README.md
# Access Log Parser
## Setup
Add the library as a dependency to your `mix.exs` file:
```elixir
defp deps do
[
# ...
{:accesslog_parser, "~> 0.2.0"},
# ...
]
end
```
## Usage
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.
## License
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)