Hi,
I am using mod_log_firstbyte in apache. This nicely puts the time to first byte into the log file as follows….
10.1.1.5 – - [19/Nov/2008:12:00:09 +0200] "GET /myapp HTTP/1.1" 301 255 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" 2481 2171
Essentially, I want to graph the TTFB(2171) at the end of my report. Ideally, I would do it with a sorted list of "worst to best". I only need the top 50 or so, I appreciate this may be beyond the "EXTRA" section, but was looking for advice.
Best way was to start myself, I tried the following, but I get an empty table…..
ExtraSectionName1="Time Taken to serve request"
ExtraSectionCodeFilter1="200 304"
ExtraSectionCondition1="URL,(.*)"
ExtraSectionFirstColumnTitle1="URL's"
ExtraSectionFirstColumnValues1="extra1,(.*)"
ExtraSectionFirstColumnFormat1="%s"
ExtraSectionStatTypes1=PLHB
ExtraSectionAddAverageRow1=0
ExtraSectionAddSumRow1=1
Appreciate any advice or help you can offer….
Sc0tt….