On Wed, 10 Aug 2011 11:17:54 -0400, alexus wrote:
On Tue, Aug 9, 2011 at 11:57 PM, Amos Jeffries wrote:
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
Ok, here it is....
http://pastebin.com/XWPaffwq
That list has a lot of HTTPS CONNECT requests and private user-specific
pages. Nothing to do about those.
One or two advertising sites which you could block to improve speed if
you wanted to.
Amos