|
|
|
|
|
|
|
|
Each time someone visits a page on your site, an entry is automatically added to the server's log file. A log file is simply a record of the number of times a particular file has been requested (this is commonly referred to as a "hit") and some basic information, including the date and time of the request, the size of the file served, whether there were errors in serving the file, the site the visitor came from, and the specific web page the visitor came from. (Unless a visitor has registered with a website, it's not possible to know the identity of that person.) A great deal of information can be gleaned from these files, but it can be intimidating at first glance.
Raw log files are definitely not for the faint at heart. A variety of programs can make sense of these logs, from free Perl scripts that do simple counting, to sophisticated statistical analysis software.
Your web hosting service should provide you with a short summary of activity on your site. Make sure it will also provide you with direct access to the log files as well. That way, you can run your own software on the data and analyze it. Stay away from providers who
tell you only the total number of hits on your site. All this number tells you is the total of requests for all files on your site. Without the additional details provided in a log file, the hits count can be misleading. Here's why.
When a particular page is requested, that request includes all of the image and other files associated with that page. Let's say you have nine images on your page; the hits count for the page will be ten instead of one, making it appear like there were ten times the number of actual requests. In addition, if a visitor reloads a page, it registers as a new request. Use the hits count only as a gross measurement of the activity on your site, and review the log file for critical details. Sophisticated software is available to analyze the domain name of the visitor, match it against a database of known addresses, and break it into geographic region and type. This gives a detailed picture of where your users come from. With this type of analysis, you get a more accurate view of how many unique users visit your site (as opposed to the number of hits) and from where and when they visit. Visit this site for a comprehensive list of log file analyzers.
|
|