web-analyticsweb-analytics-tools

How do the web analytics tools work?


I am in process of gathering information about web analytics tools (like Google Web Analytics) for my next assignment, but I am not able to find any good information. I am looking for:

  1. Key terms used.
  2. What all mediums are available for data collection and How they works.
  3. Any reference books, white papers etc (technical and non technical both).
  4. Any open source implementation (especially in .NET).

Solution

  • Here are the key terms used:

    Methods used:

    Web server logfile analysis

    In this method you write script to scrape details out of your log files and then write it to your database. This method will not give you real time statistics. You can read more about web log analysis software here.

    Page tagging

    Add a code of javascript or just an image and then use the code to get all the dtails about the page, referrr, visitor etc.

    ...these were images included in a web page that showed the number of times the image had been requested, which was an estimate of the number of visits to that page. In the late 1990s this concept evolved to include a small invisible image instead of a visible one, and, by using JavaScript, to pass along with the image request certain information about the page and the visitor. This information can then be processed remotely by a web analytics company, and extensive statistics generated...

    If you are using analytics in your own website, you can use the code provided by Eytan Levit

    Credit wikipedia. More information can be found there.