Write percentile count comparison table
Writes a LaTeX table listing URLs in decreasing order of request count for a baseline workload compared with a current workload on stdout for incorporation in a LaTeX report
laTexFilePercentileComparisonsWrite(latest, baseline, headingLaTeX="\\section{Transaction Count Percentile Ranking}")
latest
: data frame of log records for the latest (test) workloadbaseline
: data frame of log records for the baseline workloadheadingLaTeX
: LaTeX section heading for this tableDoes not return a value.
Greg Hunt greg@firmansyah.com
logFileName = logFileNamesGetLast(dataDirectory=datd, directoryNames=c(".", "."), fileNamePattern="*[.]log")[[1]] cols = logFileFieldsGetIIS(logFileName) logdf = logFileRead(logFileName, columnList=cols, logTimeZone = "", timeFormat = "") laTexFilePercentileComparisonsWrite(logdf, logdf)