Documentation for oi! ‹ oi! Cache Log Analyzer ‹ Code ‹ meridian.net.au
Go to: oi! Cache Log Analyzer : About • Sample Reports • License • Download • Documentation
OK, so I don't have any detailed documentation written at this time because, well, you just throw input at it. Here are a couple of brief command line examples, assuming a UNIX operating system and the oi! script is in your command path.
Output from oi! is to standard output, so you need to use redirection to get the output into a file. You can specify an input filename as an argument:
# oi cache.access.log > output.html
Or you can pipe a log file into oi!:
# cat cache.access.log | oi > output.html
Or if you want to only process some subset of a logfile, you can use grep to filter out the lines, and pass the output into oi!:
# grep "TCP_MISS" cache.access.log | oi > output.html
If you have any comments or suggestions, please let me know. You can contact me online.