Skip to content

Instantly share code, notes, and snippets.

@esparkman
Created June 16, 2010 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save esparkman/441250 to your computer and use it in GitHub Desktop.
Save esparkman/441250 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
open OUTPUT, ">>output.txt";
open(FILE, $ARGV[0]);
$count = 0;
while($line = <FILE>) {
if ( !($line =~ /^#/ ) ) {
$lines[$count] = $line;
$count++;
}
}
close(FILE);
print OUTPUT "Total HTTP requests: $count\n";
$reqCount = 0;
$sfCount = 0;
$gifCount = 0;
$jpgCount = 0;
$cssCount = 0;
$icoCount = 0;
$jsCount = 0;
$pdfCount = 0;
$xmlCount = 0;
$swfCount = 0;
$pngCount = 0;
for ($i = 0; $i < 24; $i++ ) {
$hourCount[$i] = 0;
$hourDuration[$i] = 0;
}
for ($i = 0; $i < $count; $i++) {
#($ip, $dat, $tim, $method, $uri, $status, $duration, $len) = split(/\t/, $lines[$i]);
($front, $mid, $after) = split("\"", $lines[$i]);
($ip, $g1, $g2, $datim, $offset) = split(/ /, $front);
($method, $uri, $proto) = split(/ /, $mid);
($g3, $status, $len, $perf) = split(/ /, $after);
($bp, $dur) = split(/=/, $perf);
$duration = $dur/1000;
if ( $uri =~ /.gif$/) {
$sfCount++;
$sfDuration += $duration;
$gifCount++;
}
elsif ( $uri =~ /.jpg$/) {
$sfCount++;
$sfDuration += $duration;
$jpgCount++;
}
elsif ( $uri =~ /.css$/) {
$sfCount++;
$sfDuration += $duration;
$cssCount++;
}
elsif ( $uri =~ /.js$/) {
$sfCount++;
$sfDuration += $duration;
$jsCount++;
}
elsif ( $uri =~ /.ico$/) {
$sfCount++;
$sfDuration += $duration;
$icoCount++;
}
elsif ( $uri =~ /.swf$/) {
$sfCount++;
$sfDuration += $duration;
$swfCount++;
}
#elsif ( $uri =~ /.xml$/) {
#$sfCount++;
#$sfDuration += $duration;
#$xmlCount++;
#}
elsif ( $uri =~ /.pdf$/) {
$sfCount++;
$sfDuration += $duration;
$pdfCount++;
}
elsif ( $uri =~ /.png$/) {
$sfCount++;
$sfDuration += $duration;
$pngCount++;
} else {
$reqCount++;
print "Processing $reqCount: $uri \n";
($bf,$hour,$minute,$seconds) = split(":", $datim);
if ( $hour < $ARGV[1] || $hour > $ARGV[2]) { next; }
$hourCount[$hour]++;
$hourDuration[$hour] += $duration;
$uniques{$uri}++;
$durations{$uri} += $duration;
$totalTime += $duration;
if ( $duration > 10 ) {
$outlier{$uri}++;
$totalSlowCnt++;
}
if ( $duration > $maxDur{$uri} ) {
$maxDur{$uri} = $duration;
}
}
}
if ( $reqCount == 0 ) {
$reqCount=1;
}
if ( $sfCount == 0 ) {
$sfCount = 1;
}
$overallAvg = $totalTime/$reqCount;
$overallSFAvg = $sfDuration/$sfCount;
print OUTPUT "Total page requests: $reqCount\n";
print OUTPUT "Unique pages: ".keys(%uniques)."\n";
print OUTPUT "Total slow pages: $totalSlowCnt\n";
print OUTPUT "Page total, avg: $totalTime, $overallAvg\n";
print OUTPUT "Static file total, avg: $sfDuration, $overallSFAvg\n";
print OUTPUT "Total JavaScript: $jsCount\n";
print OUTPUT "Total gif: $gifCount\n";
print OUTPUT"Total jpg: $jpgCount\n";
print OUTPUT "Total css: $cssCount\n";
print OUTPUT "Total ico: $icoCount\n";
print OUTPUT "\n";
for ($i=$ARGV[1]; $i < $ARGV[2]; $i++ ) {
if ($hourCount[$i] == 0 ){
$avgDur = 0;
} else {
$avgDur = $hourDuration[$i]/$hourCount[$i];
}
print "Hour $i: page views = $hourCount[$i], total time = ";
printf "%.3f", $hourDuration[$i]; printf " and avg = %.2f\n", $avgDur;
}
print OUTPUT "\nMost Frequently called URIs:\n";
$tc=0;
@sorter = sort { $uniques{$b} <=> $uniques{$a} } keys %uniques;
foreach (@sorter) {
$tc++;
$numReqs = $uniques{$_};
if ( $numReqs != 0 ) {
$avgDur = $durations{$_} / $numReqs;
} else {
$avgDur = -1;
}
print OUTPUT "$_ $numReqs avg=";
printf OUTPUT '%.2f', $avgDur;
print OUTPUT " max=$maxDur{$_}";
if ( $maxDur{$_} > 5 ) {
print " outlier=$outlier{$_}";
}
print OUTPUT "\n";
if ($tc == 5) {
last;
}
}
print OUTPUT "\nSlowest URIs:\n";
$tc=0;
foreach $key (keys(%uniques)) {
$numCalled = $uniques{$key};
if ( $numCalled == 0 ) {
$avgTimes{$key} = -1;
} else {
$avgTimes{$key} = $durations{$key} / $numCalled;
}
}
@sorter = sort { $avgTimes{$b} <=> $avgTimes{$a} } keys %avgTimes;
foreach (@sorter) {
$tc++;
$numReqs = $uniques{$_};
if ( $numReqs != 0 ) {
$avgDur = $durations{$_} / $numReqs;
} else {
$avgDur = -1;
}
print OUTPUT "$_ $numReqs avg=";
printf OUTPUT '%.2f', $avgDur;
print OUTPUT " max=$maxDur{$_}";
if ( $maxDur{$_} > 5 ) {
print OUTPUT " outlier=$outlier{$_}";
}
print OUTPUT "\n";
if ($tc == 10) {
last;
}
}
print OUTPUT "\nMost expensive URIs:\n";
$tc=0;
@sorter = sort { $durations{$b} <=> $durations{$a} } keys %durations;
foreach (@sorter) {
$tc++;
$numReqs = $uniques{$_};
if ( $numReqs != 0 ) {
$avgDur = $durations{$_} / $numReqs;
} else {
$avgDur = -1;
}
print OUTPUT "$_ $numReqs avg=";
printf OUTPUT '%.2f', $avgDur;
print OUTPUT " total=";
printf OUTPUT '%.2f', $durations{$_};
print OUTPUT " max=$maxDur{$_}";
if ( $maxDur{$_} > 5 ) {
print " outlier=$outlier{$_}";
}
print OUTPUT "\n";
if ($tc == 10) {
last;
}
}
close OUTPUT;
counter = 0
req_count = 0
total_http = 0
gif_count = 0
css_count = 0
jpg_count = 0
ico_count = 0
js_count = 0
pdf_count = 0
xml_count = 0
swf_count = 0
png_count = 0
begin
file = File.open(ARGV[0])
file.each do |line|
counter += 1
req_count += 1
total_http = counter
if line =~ /gif/
gif_count += 1
end
if line =~ /css/
css_count += 1
end
if line =~ /jpg/
jpg_count += 1
end
if line =~ /ico/
ico_count += 1
end
if line =~ /js/
js_count += 1
end
if line =~ /pdf/
pdf_count += 1
end
if line =~ /xml/
xml_count += 1
end
if line =~ /swf/
swf_count += 1
end
if line =~ /png/
png_count += 1
end
end
file.close
rescue => err
puts "Exception: #{err}"
err
end
puts "-------------------------------"
puts "Total HTTP Requests #{total_http}"
puts "Total Page Requests #{req_count}"
puts "-------------------------------"
puts "Total GIF Requests #{gif_count}"
puts "Total CSS Requests #{css_count}"
puts "Total JPG Requests #{jpg_count}"
puts "Total ICO Requests #{ico_count}"
puts "Total JS Requests #{js_count}"
puts "Total PDF Requests #{pdf_count}"
puts "Total XML Requests #{xml_count}"
puts "Total SWF Requests #{swf_count}"
puts "Total PNG Requests #{png_count}"
puts "-------------------------------"
-------------------------------
Total HTTP Requests 65204
Total Page Requests 65204
-------------------------------
Total GIF Requests 40725
Total CSS Requests 4725
Total JPG Requests 8400
Total ICO Requests 13650
Total JS Requests 3225
Total PDF Requests 1200
Total XML Requests 0
Total SWF Requests 1200
Total PNG Requests 0
-------------------------------
Processing 1: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 2: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 3: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 4: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 5: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 6: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 7: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 8: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 9: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 10: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 11: /chiDPMResources/xsl/content/chihomev4QueryNewsFeaturedSacredStory.xsl
Processing 12: /chiDPMResources/xsl/content/chihomev4QueryNewsFeaturedSacredStory.xsl
Processing 13: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 14: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 15: /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl
Processing 16: /chiDPMResources/xsl/content/chihomev4QueryWebtextSpotlight.xsl
Processing 17: /chiDPMResources/xsl/content/chihomev4QueryWebtextSpotlight.xsl
Processing 18: /chiDPMResources/xsl/content/chihomev4QueryAnnouncementHomePageList.xsl
Processing 19: /chiDPMResources/xsl/content/chihomev4QueryWebtextSpotlight.xsl
Processing 20: /chiDPMResources/xsl/content/chihomev4QueryAnnouncementHomePageList.xsl
Processing 21: /chiDPMResources/xsl/content/chihomev4QueryWebtextSpotlight.xsl
Processing 22: /portal/site/chihome/
Processing 23: /portal/site/chihome/
Processing 24: /portal/site/chihome/
Processing 25: /portal/site/chihome/
Processing 26: /portal/site/chihome/
Processing 27: /portal/site/chihome/
Processing 28: /portal/site/chihome/
Processing 29: /portal/site/chihome/
Processing 30: /portal/site/chihome/
Processing 31: /portal/site/chihome/
Processing 32: /portal/site/chihome/
Processing 33: /portal/site/chihome/
Processing 34: /portal/site/chihome/
Processing 35: /portal/site/chihome/
Processing 36: /portal/site/chihome/
Processing 37: /portal/site/chihome/
Processing 38: /portal/site/chihome/
Processing 39: /portal/site/chihome/
Processing 40: /portal/site/chihome/
Processing 41: /portal/site/chihome/
Processing 42: /portal/site/chihome/
Processing 43: /portal/site/chihome/
Processing 44: /portal/site/chihome/
Processing 45: /portal/site/chihome/
Processing 46: /portal/site/chihome/
Processing 47: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 48: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 49: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 50: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 51: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 52: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 53: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 54: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 55: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 56: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 57: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 58: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 59: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 60: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 61: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 62: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 63: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 64: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 65: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 66: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 67: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 68: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 69: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 70: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 71: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 72: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 73: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 74: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 75: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 76: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 77: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 78: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 79: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 80: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 81: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 82: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 83: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 84: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 85: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 86: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 87: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 88: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 89: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 90: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 91: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 92: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 93: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 94: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 95: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 96: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 97: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 98: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 99: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 100: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 101: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 102: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 103: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 104: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 105: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 106: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 107: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 108: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 109: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 110: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 111: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 112: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 113: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 114: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 115: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 116: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 117: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 118: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 119: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 120: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 121: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 122: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 123: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 124: /vgn-ext-templating/floatie_template_menu_header.PNG
Processing 125: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 126: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 127: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 128: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 129: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 130: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 131: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 132: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 133: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 134: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 135: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 136: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 137: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 138: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 139: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 140: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 141: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 142: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 143: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 144: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 145: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 146: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 147: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 148: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 149: /weather/dwr/exec/weatherLoader.getWeather.dwr
Processing 150: /portal/site/chihome/menuitem.1bd88303c7923690579df0ef43abafa0/?vgnextoid=a34800fd85aa3010VgnVCM10000034bafa0aRCRD
Processing 151: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 152: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 153: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 154: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 155: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 156: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 157: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 158: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 159: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 160: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 161: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 162: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 163: /vgn-ext-templating/floatie_content_menu_bg.PNG
Processing 164: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 165: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 166: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 167: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 168: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 169: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 170: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 171: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 172: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 173: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 174: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 175: /vgn-ext-templating/floatie_content_menu_header.PNG
Processing 176: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 177: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 178: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 179: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 180: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 181: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 182: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 183: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 184: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 185: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 186: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 187: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 188: /vgn-ext-templating/floatie_page_menu_bg.PNG
Processing 189: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 190: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 191: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 192: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 193: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 194: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 195: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 196: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 197: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 198: /vgn-ext-templating/floatie_template_menu_bg.PNG
Processing 199: /vgn-ext-templating/floatie_page_menu_header.PNG
Processing 200: /vgn-ext-templating/floatie_template_menu_bg.PNG
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:32 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:34 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryNewsFeaturedSacredStory.xsl HTTP/1.1" 200 1309 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:34 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryNewsFeaturedSacredStory.xsl HTTP/1.1" 200 1309 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:36 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:36 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:36 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextQuickReference.xsl HTTP/1.1" 200 6155 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:38 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextSpotlight.xsl HTTP/1.1" 200 727 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:38 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextSpotlight.xsl HTTP/1.1" 200 727 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:38 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryAnnouncementHomePageList.xsl HTTP/1.1" 200 2131 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:38 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextSpotlight.xsl HTTP/1.1" 200 727 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:38 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryAnnouncementHomePageList.xsl HTTP/1.1" 200 2131 elapsed=0
10.250.190.25 - - [15/Jun/2010:20:00:38 -0600] "GET /chiDPMResources/xsl/content/chihomev4QueryWebtextSpotlight.xsl HTTP/1.1" 200 727 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=12094
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=31827
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=3188
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=23687
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=2297
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=2391
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=2172
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=1969
10.250.42.123 - - [15/Jun/2010:20:00:45 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:47 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:47 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:47 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:47 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:48 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:48 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:48 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:48 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:48 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:48 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:48 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:49 -0600] "GET /nonvap/content/images/icons/icon_arrowup.gif HTTP/1.1" 200 891 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:49 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:49 -0600] "GET /nonvap/content/images/icons/icon_arrowup.gif HTTP/1.1" 200 891 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:50 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:50 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=16
10.250.42.123 - - [15/Jun/2010:20:00:50 -0600] "GET /nonvap/content/images/icons/icon_arrowup.gif HTTP/1.1" 200 891 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:50 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:52 -0600] "GET /nonvap/content/images/icons/icon_arrowup.gif HTTP/1.1" 200 891 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:52 -0600] "GET /nonvap/content/images/icons/icon_arrowup.gif HTTP/1.1" 200 891 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:52 -0600] "GET /nonvap/content/images/icons/icon_html.gif HTTP/1.1" 200 260 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:52 -0600] "GET /nonvap/content/images/icons/icon_arrowup.gif HTTP/1.1" 200 891 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:52 -0600] "GET /nonvap/content/images/icons/icon_html.gif HTTP/1.1" 200 260 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:52 -0600] "GET /nonvap/content/images/icons/icon_arrowup.gif HTTP/1.1" 200 891 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:53 -0600] "GET /nonvap/content/images/icons/icon_arrowup.gif HTTP/1.1" 200 891 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:53 -0600] "GET /nonvap/content/images/icons/icon_html.gif HTTP/1.1" 200 260 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:53 -0600] "GET /nonvap/content/images/icons/icon_html.gif HTTP/1.1" 200 260 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:53 -0600] "GET /nonvap/content/images/icons/icon_mpp.gif HTTP/1.1" 200 366 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:54 -0600] "GET /nonvap/content/images/icons/icon_html.gif HTTP/1.1" 200 260 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:54 -0600] "GET /nonvap/content/images/icons/icon_mpp.gif HTTP/1.1" 200 366 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:54 -0600] "GET /nonvap/content/images/icons/icon_html.gif HTTP/1.1" 200 260 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:55 -0600] "GET /nonvap/content/images/icons/icon_html.gif HTTP/1.1" 200 260 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:55 -0600] "GET /nonvap/content/images/icons/icon_html.gif HTTP/1.1" 200 260 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:55 -0600] "GET /nonvap/content/images/icons/icon_mpp.gif HTTP/1.1" 200 366 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:55 -0600] "GET /nonvap/content/images/icons/icon_mpp.gif HTTP/1.1" 200 366 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:56 -0600] "GET /nonvap/content/images/icons/icon_mpp.gif HTTP/1.1" 200 366 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:56 -0600] "GET /nonvap/content/images/icons/icon_pdf.gif HTTP/1.1" 200 247 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:56 -0600] "GET /nonvap/content/images/icons/icon_mpp.gif HTTP/1.1" 200 366 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:56 -0600] "GET /nonvap/content/images/icons/icon_pdf.gif HTTP/1.1" 200 247 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:56 -0600] "GET /nonvap/content/images/icons/icon_mpp.gif HTTP/1.1" 200 366 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:56 -0600] "GET /nonvap/content/images/icons/icon_pdf.gif HTTP/1.1" 200 247 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:58 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=625
10.250.42.123 - - [15/Jun/2010:20:00:58 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=1047
10.250.42.123 - - [15/Jun/2010:20:00:58 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=1218
10.250.42.123 - - [15/Jun/2010:20:00:58 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=204
10.250.42.123 - - [15/Jun/2010:20:00:58 -0600] "GET /nonvap/content/images/icons/icon_mpp.gif HTTP/1.1" 200 366 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:58 -0600] "GET /nonvap/content/images/icons/icon_pdf.gif HTTP/1.1" 200 247 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:58 -0600] "GET /nonvap/content/images/icons/icon_ppt.gif HTTP/1.1" 200 249 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:00:58 -0600] "GET /nonvap/content/images/icons/icon_ppt.gif HTTP/1.1" 200 249 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /nonvap/content/images/icons/icon_ppt.gif HTTP/1.1" 200 249 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /nonvap/content/images/icons/icon_pdf.gif HTTP/1.1" 200 247 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /nonvap/content/images/icons/icon_ppt.gif HTTP/1.1" 200 249 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /nonvap/content/images/icons/icon_pdf.gif HTTP/1.1" 200 247 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /nonvap/content/images/icons/icon_pdf.gif HTTP/1.1" 200 247 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /nonvap/content/images/icons/icon_pdf.gif HTTP/1.1" 200 247 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /portal/site/chihome/ HTTP/1.1" 200 41266 elapsed=3141
10.250.42.123 - - [15/Jun/2010:20:01:00 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:01 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:01 -0600] "GET /nonvap/content/images/icons/icon_quickLinkArrow.gif HTTP/1.1" 200 128 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:01 -0600] "GET /nonvap/content/images/icons/icon_quickLinkArrow.gif HTTP/1.1" 200 128 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:02 -0600] "GET /nonvap/content/images/buttons/App_button.gif HTTP/1.1" 200 1064 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:02 -0600] "GET /nonvap/content/images/icons/icon_ppt.gif HTTP/1.1" 200 249 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:02 -0600] "GET /nonvap/content/images/icons/icon_ppt.gif HTTP/1.1" 200 249 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:02 -0600] "GET /nonvap/content/images/icons/icon_ppt.gif HTTP/1.1" 200 249 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:02 -0600] "GET /nonvap/content/images/icons/icon_quickLinkArrow.gif HTTP/1.1" 200 128 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:02 -0600] "GET /nonvap/content/images/icons/icon_quickLinkArrow.gif HTTP/1.1" 200 128 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:03 -0600] "GET /nonvap/content/images/icons/icon_ppt.gif HTTP/1.1" 200 249 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:03 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
10.250.42.123 - - [15/Jun/2010:20:01:03 -0600] "GET /nonvap/content/images/icons/icon_arrow.gif HTTP/1.1" 200 892 elapsed=0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment