• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Hits vs Files vs Pages vs Visits vs Sites

edro

Lifer
What the heck is the difference and examples of each?
I was looking at my Webalizer stats and I see all these....

Here are my guesses of what they are:

Hits: Search bots, files, visits.... everything.
Files: downloading movies, pics, and such.
Pages: loading a full page
Visits: unique IP addresses
Sites: ?

Am I close? Please correct me if I am way off.

 
Hits represent the total number of requests made to the server during the given time period (month, day, hour etc..).

Files represent the total number of hits (requests) that actually resulted in something being sent back to the user. Not all hits will send data, such as 404-Not Found requests and requests for pages that are already in the browsers cache. Tip: By looking at the difference between hits and files, you can get a rough indication of repeat visitors, as the greater the difference between the two, the more people are requesting pages they already have cached (have viewed already).

Sites is the number of unique IP addresses/hostnames that made requests to the server. Care should be taken when using this metric for anything other than that. Many users can appear to come from a single site and they can also appear to come from many IP addresses, so it should be used simply as a rough guide as to the number of visitors to your server.

Visits occur when some remote site makes a request for a page on your server for the first time. As long as the same site keeps making requests within a given timeout period, they will all be considered part of the same Visit. If the site makes a request to your server, and the length of time since the last request is greater than the specified timeout period (default is 30 minutes), a new Visit is started and counted, and the sequence repeats. Since only pages will trigger a visit, remote sites that link to graphic and other non-page URLs will not be counted in the Visit totals, reducing the number of false visits.

Pages are those URLs that would be considered the actual page being requested and not all of the individual items that make it up (such as graphics and audio clips). Some people call this metric page views or page impressions and defaults to any URL that has an extension of .htm, .html or .cgi.


http://www.plugsocket.com/support/site_statistics.html
 
awstats has too much info, so I prefer webalizer for at a glance stats.

For indepth stuff awstats rocks 🙂
 
Hits: How many total page accesses you get per [time period].

Visits: Usually denotes the number of unique visitors your site gets per [time period].

Files: Likely a top 10 or 20 list of the most popular files downloaded from your site.
 
Back
Top