From: Eric B. R. <eb...@tc...> - 2003-01-17 16:16:11
|
On Friday, January 17, 2003, at 06:54 AM, Marc Palmer wrote: > > Eric - can we "grep -c" access_log on webmacro.org to get the download > stats for the last few days? Without a log analyser it's going to be a > tricky regex to stats per day though. you just want a count of page hits per day since the PR? No problem: % cut -d- -f3 access_log | cut -d\[ -f2 | cut -d: -f1 | uniq -c ... 3970 01/Jan/2003 3773 02/Jan/2003 4047 03/Jan/2003 2582 04/Jan/2003 3130 05/Jan/2003 3399 06/Jan/2003 3422 07/Jan/2003 3474 08/Jan/2003 3789 09/Jan/2003 2217 10/Jan/2003 861 12/Jan/2003 4301 13/Jan/2003 6772 14/Jan/2003 14189 15/Jan/2003 8462 16/Jan/2003 4081 17/Jan/2003 Note that the server was offline for part of the 10th thru part of the 12th. The most hits we've had (since May 02, 2002): 95413 16/May/2002 I wonder what happened on that day. eric |