plotDataRateImpactOnStaticResponse {WebAnalytics}R Documentation

Plot static object response time against aggregate data rate

Description

Generates a plot of 95th percentile response time for static objects against aggregate data rate, for ten minute intervals in the dataframe provided.

Usage

plotDataRateImpactOnStaticResponse(dataFrame) 

Arguments

dataFrame

a transaction data frame

Value

Returns a base graphics plot. This function is intended to be wrapped in a call to plotSave

Author(s)

Greg Hunt <greg@firmansyah.com>

Examples


logFileName = logFileNamesGetLast(dataDirectory=datd, 
  directoryNames=c(".", "."), 
  fileNamePattern="*[.]log")[[1]]

cols = logFileFieldsGetIIS(logFileName)

logdf = logFileRead(logFileName, columnList=cols, 
            logTimeZone = "", timeFormat = "")

plotDataRateImpactOnStaticResponse(logdf) 

[Package WebAnalytics version 0.9.12 Index]