Forum Moderators: DixonJones
I've seen a lot that just record the daily unique visits and add them to a running total every day. This isnt helpful. I'd like to know how many different people have visited the site starting the day we install the script. (obviously :P)
Is there a free tool or script that you can use to track the total number of unique first time IP visits served?
How about:
cat *.log ¦ awk '{print $1}' ¦ sort ¦ uniq ¦ wc -l
Since you didn't specify language, platform, or planet, I'll assume my favorite for all three will work just fine :-)
(which doesnt include spider hits)
Ah, well now you have to decide what defines a spider. If you think that's "obvious", then you have some studying to do.
I'd like to know how many different people have visited the site starting the day we install the script. (obviously :P)
And I would like a pony for Christmas, but we're both going to have to settle for somewhat less than what we want. For example, when I and my wife use different computers to access your website, you'll only see 1 IP address because I run NAT on outgoing connections. Likewise, if your website is up for a couple years (or you're a very high traffic site), you can count on a great many different AOL users having visited you via the exact same IP address.
Try googling for "analog webworks" and see if that page makes it clear why counting unique IP addresses is not identical (and sometimes far from it) to counting real, breathing, unique people.