How does google analytics collect its data? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T06:11:09Zhttp://stackoverflow.com/feeds/question/892049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/892049/how-does-google-analytics-collect-its-data0How does google analytics collect its data?echox2009-05-21T09:20:45Z2009-05-21T16:55:04Z
<p>Yes, I know you have to embed the google analytics javascript into your page.</p>
<p>But how is the collected information submitted to the google analytics server?</p>
<p>For example an AJAX request will not be possible because of the browsers security settings (cross domain scripting).</p>
<p>Maybe someone had already a look at the confusing google javascript code?</p>
http://stackoverflow.com/questions/892049/how-does-google-analytics-collect-its-data/892056#8920561Answer by pts for How does google analytics collect its data?pts2009-05-21T09:23:24Z2009-05-21T09:23:24Z<p>Use the <em>httpfox</em> or <em>firebug</em> Firefox extension to figure out what HTTP requests the browser sends and what responses it receives.</p>
<p>I don't know how Google Analytics works, but one possibility is to make the browser download an image: <code><img src="http://my-analytics.com" width="1" height="1"></code> (with a single, transparent pixel), and log all the HTTP request headers (e.g. <code>Referer:</code>) on the server side.</p>
http://stackoverflow.com/questions/892049/how-does-google-analytics-collect-its-data/892059#8920594Answer by David Dorward for How does google analytics collect its data?David Dorward2009-05-21T09:24:18Z2009-05-21T09:24:18Z<p>It's easy enough to tell by using something like Firebug's Net tab.</p>
<p>Ajax isn't needed - since data isn't being fetched from Google. They just encode the information in a query string, and then load a transparent gif using it.</p>
http://stackoverflow.com/questions/892049/how-does-google-analytics-collect-its-data/892060#8920603Answer by Yuval A for How does google analytics collect its data?Yuval A2009-05-21T09:24:47Z2009-05-21T09:24:47Z<p>Without looking at the code, I assume their data is collected from the HTTP headers they receive in the asynchronous request.</p>
<p>Remember that most browsers send data such as OS, platform, browser, version, locale, etc... Also they do have the IP so they can guesstimate your location. And I assume they have some sort of clever algorithm to decide whether you are a unique visitor or not.</p>
<p>Time on the site is probably calculated by using an <code>onUnload()</code> event.</p>
http://stackoverflow.com/questions/892049/how-does-google-analytics-collect-its-data/892065#8920658Answer by Thinker for How does google analytics collect its data?Thinker2009-05-21T09:26:20Z2009-05-21T13:38:03Z<p>When html page makes a request for a ga.js file the http protocol sends big amount of data, about IP, refer, browers, language, system. There is no need to use ajax.</p>
<p>But still some data cant be achieved this way, so GA script puts image into html with additional parameters, take a look at this example:</p>
<p><code>http://www.google-analytics.com/__utm.gif?utmwv=4.3&utmn=1464271798&utmhn=www.example.com&utmcs=UTF-8&utmsr=1920x1200&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=10.0%20r22&utmdt=Page title&utmhid=1805038256&utmr=0&utmp=/&utmac=cookie value</code></p>
<p>This is a blank image that GA puts into HTML.</p>
http://stackoverflow.com/questions/892049/how-does-google-analytics-collect-its-data/892158#8921580Answer by echox for How does google analytics collect its data?echox2009-05-21T09:49:28Z2009-05-21T16:55:04Z<p>//edit: see coment at the bottom</p>
<p>*Ok, find an answer during a discussion with a friend of mine :-)
The informations to google analytics are submitted in three ways:
1. List item
1. The HTTP Request can be analyzed with all informations of the http headers.
2. A cookie is recognized by the google analytics server.
3. <strong>An ajax call is done within the embeded javascript to submit such informations like display resolution, flash player version, etc.</strong>
<strong>These informations are not transmitted via the http headers.</strong>
*This is possible, because the ajax call is done in the context of the embedded javascript, so its no cross domain scripting. This was an error in reasoning by me.**</p>