=========================================================================
           Scripts for postprocessing of Sherlok.log files
=========================================================================

The AWK files in this directory can be used to extract and format the 
garbage collector statisticts to presentation purposes

  gc2csv.awk        -> format the output to CSV file, usable
                       for download in Spreadsheet (MS Excel) 
                       gcgraph.xls                                   
  
  gc2html.awk       -> simple HTML table
  
  gc2htmgraph.awk   -> formated HTML table with GC output and also
                       info entries from the log. It links stylesheet
                       gcstyle.css, that can be adapted by you need.

=========================================================================

How to use it:

You have to use the AWK processor (awk, gawk,...) where input is the 
log file generated by Sherlok. Then use corresponding command from
the shell.


  awk -f gc2csv.awk  < inputFile.log  > outputFile.csv
 gawk -f gc2csv.awk  < inputFile.log  > outputFile.csv

  awk -f gc2html.awk  < inputFile.log  > outputFile.html
 gawk -f gc2html.awk  < inputFile.log  > outputFile.html

  awk -f gc2htmlgraph.awk  < inputFile.log  > outputFile.html
 gawk -f gc2htmlgraph.awk  < inputFile.log  > outputFile.html



Note: As on MS Windows NT/2000/XP standard installation there is no 
AWK/GAWK processor available. In this case you need to install it
manually i.e. from external packages:
  
  http://unxutils.sourceforge.net/
  http://www.cygwin.com/


=========================================================================
