summaryTxDataFrameCreate | R Documentation |
From a dataframe containing log data, calculate 95th percentile response, total wait and error counts, embed TeX hyperlinks referencing the URL. Return these in a dataframe intended for printing in a report.
summaryTxDataFrameCreate(logDataframe)
logDataframe |
a dataframe created by the functions that read log files. |
Returns a dataframe containing columns
95th Percentile response time for the URL
The URL
Number of requests for that URL
Total wait time for the URL in seconds
Number of HTTP 5xx errors
Number of HTTP 4xx errors
Number of HTTP 3xx responses
Number of HTTP 200 responses
Greg Hunt <greg@firmansyah.com>
logFileName = logFileNamesGetLast(dataDirectory=datd,
directoryNames=c(".", "."),
fileNamePattern="*[.]log")[[1]]
cols = logFileFieldsGetIIS(logFileName)
logdf = logFileRead(logFileName, columnList=cols,
logTimeZone = "", timeFormat = "")
summarydf = summaryTxDataFrameCreate(logdf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.