I'm looking to retroactively parse the logs and count the number of /foo/* requests that have occurred to have a baseline benchmark for a new feature that we're pushing. A simple command line script would be fine -- with an added bonus for being able to specify a date-range.

Some use of grep, perhaps?

link|improve this question

44% accept rate
1  
line 3: error: 'Simple' and 'able to specify a date-range': Incompatible types – chaos May 1 '09 at 23:19
feedback

3 Answers

egrep -c '\] "[A-Z]+ /foo/' access_log
link|improve this answer
feedback

Adding the "able to specify a date range" condition makes it a little harder. Easiest probably to write a Python or Ruby program. Otherwise, using date(1) with -f to set up the parsing format, -j to tell it to leave the damn clock alone, and -r to have it print seconds since epoch would get you there.

link|improve this answer
feedback
fgrep " /foo/" access_log | wc -l

to get a roughly formatted accesses per day:

fgrep " /foo/" access_log | cut -d'[' -f2 | cut -d: -f1 | uniq -c
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.