How does google analytics collect its data? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T06:11:09Z http://stackoverflow.com/feeds/question/892049 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/892049/how-does-google-analytics-collect-its-data 0 How does google analytics collect its data? echox 2009-05-21T09:20:45Z 2009-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#892056 1 Answer by pts for How does google analytics collect its data? pts 2009-05-21T09:23:24Z 2009-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>&lt;img src="http://my-analytics.com" width="1" height="1"&gt;</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#892059 4 Answer by David Dorward for How does google analytics collect its data? David Dorward 2009-05-21T09:24:18Z 2009-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#892060 3 Answer by Yuval A for How does google analytics collect its data? Yuval A 2009-05-21T09:24:47Z 2009-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#892065 8 Answer by Thinker for How does google analytics collect its data? Thinker 2009-05-21T09:26:20Z 2009-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&amp;utmn=1464271798&amp;utmhn=www.example.com&amp;utmcs=UTF-8&amp;utmsr=1920x1200&amp;utmsc=32-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r22&amp;utmdt=Page title&amp;utmhid=1805038256&amp;utmr=0&amp;utmp=/&amp;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#892158 0 Answer by echox for How does google analytics collect its data? echox 2009-05-21T09:49:28Z 2009-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>