On Tue, 9 Aug 2011 21:48:15 -0400, alexus wrote:
how can I improve these: in particular TCP_MISS/200 as it seems like
I
have most of these and almost none TCP_HIT/200
-bash-3.2# cat access.log | awk '{print $4}' | sort | uniq -c | sort
-rn
115522 TCP_MISS/200
87750 TCP_DENIED/407
8933 TCP_MISS/304
7646 TCP_MISS/302
6456 TCP_MEM_HIT/200
Find out what URLs.
grep "TCP_MISS/200" access.log | awk '{print $7}' | sort | uniq -c |
sort -rn | head -20
and paste some worst offenders into redbot.org to find out more about
them.
Amso