Does Google Analytics have peformance overhead? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T09:37:40Zhttp://stackoverflow.com/feeds/question/435228http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead21Does Google Analytics have peformance overhead?Mohit Nanda2009-01-12T12:05:50Z2009-08-24T09:57:48Z
<p>To what extent does Google Analytics impact performance?</p>
<p>I'm looking for the following:</p>
<ul>
<li>Benchmarks (including response times/pageload times et al)</li>
<li>Links or results to similar benchmarks</li>
</ul>
<p>One (possible) method of testing Google Analytics (GA) on your site:</p>
<ol>
<li>Serve ga.js (the Google Analytics JavaScript file) from your own server.</li>
<li>Update from Google Daily (test 1) and Weekly (test 2).</li>
</ol>
<p>I would be interested to see how this reduces the communication between the client webserver and the GA server.</p>
<p>Has anyone conducted any of these tests? If so, can you provide your results? If not, does anyone have a better method for testing the performance hit (or lack thereof) for using GA?</p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435266#4352664Answer by Unkwntech for Does Google Analytics have peformance overhead?Unkwntech2009-01-12T12:21:59Z2009-01-12T12:21:59Z<p>From my own experience it has adding Google-Analytics has not changed the load times.<Br /><br />
According to FireBug it loads in less then a second (648MS avg), and according so some of my other test ~60% - 80% of that time was transferring the data from the server, which of course will vary from user to user.<Br /><br />I don't preticularly think that caching the analytics code locally will change the load times much, for the above reasons.<br /><br />
I use Google-Analytics on more then 40 websites without it ever being the cause of any, even small, slowdown, the most amount of time is spent getting the images which, due to their typical sizes, is understandable. </p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435268#4352682Answer by seanyboy for Does Google Analytics have peformance overhead?seanyboy2009-01-12T12:22:15Z2009-01-12T12:22:15Z<p>There's no/minimal site overhead on the server side. </p>
<p>The HTML for Google Analytics is three lines of javascript that you place at the bottom of your webpage. It's nothing really, and doesn't consume any more server resource than a copyright notice. </p>
<p>On the client side, the page can take a little bit (up to a couple of seconds) of time to finish displaying a page. However - In my experience, the only bit of the page not loaded is the Google stuff, so users can see your page perfectly fine. You just get the throbber at the top of the page throbbing for a little longer. </p>
<p>(Note: You need to place your google analytics code block at the bottom of any served pages for this to be the case. I don't know what happens if the code block is placed at the top of your HTML)</p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435270#4352704Answer by yar for Does Google Analytics have peformance overhead?yar2009-01-12T12:22:40Z2009-01-12T12:22:40Z<p>You can host the ga.js on your servers with no problems whatsoever, but the idea is that your users will have the ga.js cached from some <strong>other</strong> site they may have visited. So downloading ga.js, because it's so popular, adds very little overhead in many cases (i.e., it's already been cached). </p>
<p>Plus, DNS lookups do not cost the same in different places due to network topology. Caching behavior would change depending on whether users use other sites that include ga.js or not.</p>
<p>Once the javascript has been loaded, the ga.js does communicate with Google servers, but that is an asynchronous process.</p>
<p>Hope this helps. </p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435273#435273-1Answer by Andrzej Doyle for Does Google Analytics have peformance overhead?Andrzej Doyle2009-01-12T12:23:35Z2009-01-12T12:23:35Z<p>Nothing noticeable.</p>
<p>The call to Google (including DNS lookup, loading the Javascript if not already cached and the actual tracer calls themselves) should be done by the client's browser in a separate thread to actually loading your page. Certainly the DNS lookup will be done by the underlying system and will not, to my knowledge, count as a lookup within the browser (browsers have a limit on the number of request threads they will use per site).</p>
<p>Beyond that, the browser will load the Google script in parallel along with all other embedded resources, so you will potentially get an extremely slight increase in the time it takes to download everything, in the worst case (we're talking in the order of milliseconds, unnoticable. If the Google script is loaded last by the browser, or you don't have many external resources on your page, or if your page's external resources are cached by the browser, or if Google's script is cached by the browser (extremely likely) then you won't see any difference. It's just absolutely trivial overall, the same effect as sticking an extra tiny picture on your page, roughly speaking.</p>
<p>About the only time it might make a concrete difference is if you have some behaviour that fire on the onLoad event (which waits for external resources to load), <em>and</em> the Google servers are down/slow. The latter is unlikely to happen often, but if this were the case then the onLoad even won't fire until the script is downloaded. You can work around this anyway by using various "when DOM loaded" events, which are generally more responsive as you don't have to wait for your own scripts/images to load this way either. </p>
<p>If you're really that worried about the effects on page load time, then have a look a the "Net speed" section of <a href="http://www.getfirebug.com" rel="nofollow">Firebug</a>, which will quantify this and draw you a pretty graph. I would encourage you to do this for yourself anyway as even if other people give you the figures and benchmarks you request, it <strong>will</strong> be completely different for your own site.</p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435295#4352950Answer by orip for Does Google Analytics have peformance overhead?orip2009-01-12T12:34:56Z2009-01-12T12:34:56Z<p>There are some <a href="http://stevesouders.com/docs/googleio-20080529.ppt" rel="nofollow">great slides</a> by Steve Souders (client-side performance expert) about:</p>
<ul>
<li>Different techniques to load external JavaScript files in parallel</li>
<li>their effect on loading time and page rendering</li>
<li>what kind of "in progress" indicators the browser displays (e.g. 'loading' in the status bar, hourglass mouse cursor).</li>
</ul>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435297#4352971Answer by tvanfosson for Does Google Analytics have peformance overhead?tvanfosson2009-01-12T12:36:13Z2009-01-12T12:36:13Z<p>Loading any extra javascript to your page is going to increase the download time from the client's perspective. You can ameliorate this by loading it at the bottom of your page so that your page is rendered even if GA is not loaded. I would avoid caching because you would lose the advantage of the client cache for your page. If the client has it cached from some other page, your page's request will be filled from the client itself. If you change it to load from your site, it will require a download even if the client already has the code (which is likely). Adding a task to your software processes to avoid loading the file from Google seems unwarranted for what may be an unnecessary optimization. It would be hard to test this since it would always serve up faster locally, but what really matters is how fast it works for your customers. If you decide to evaluate keeping it locally, make sure you test it from your home internet connection --- not the machine sitting next to the server in your rack.</p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435300#4353009Answer by Oli for Does Google Analytics have peformance overhead?Oli2009-01-12T12:38:25Z2009-01-12T12:38:25Z<p>The common way of implementing GA is putting the JS at the bottom of the page. This means the rest of your DOM can load before the browser even thinks about accessing Google. This should keep things snappy.</p>
<p><strong>I wouldn't recommend caching the JS file.</strong></p>
<ul>
<li>It might already be in the users cache (quite a high probability if they use the internet a lot) .</li>
<li>Co-hosting it would it means your server will needlessly take on a lot more requests, potentially slowing down your core systems.</li>
<li>Browsers are limited on how many requests they'll push to one server at a time so sticking the GA JS on your domain will probably mean it takes longer for it to get processed.</li>
<li>Google's servers are better than yours.</li>
</ul>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435313#4353135Answer by Rich for Does Google Analytics have peformance overhead?Rich2009-01-12T12:43:57Z2009-01-12T14:07:11Z<p>I haven't done any fancy automated testing or programmatic number crunching, but using good old Firefox with the Firebug plugin and a pair of JS variables to tell the time difference before and after all GA code is executed, here is what I found.</p>
<p>Two things are downloaded:</p>
<ol>
<li><p>ga.js is the JavaScript file containing the code. This is 9kb, so the initial download is negligible and the filename isn't dynamic so it's cached after the first request.</p></li>
<li><p>a 35 byte gif file with a dynamic url (via query string args), so this is requested every time. 35 bytes is a negligible download as well (firebug says it took me 70ms to dl it).</p></li>
</ol>
<p>As far as execution time, my first request with a clean browser cache was an average of about 330ms each time and subsequent requests were between 35 and 130 ms.</p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435425#435425-1Answer by youdontmeanmuch for Does Google Analytics have peformance overhead?youdontmeanmuch2009-01-12T13:43:44Z2009-01-12T13:43:44Z<p>I don't think this is what your looking for but what are you worried about performance for?</p>
<p>If its your server... then there's obviously no impact as it resides on Google servers.</p>
<p>If its your users that your worried about then there is no impact either. As long as you place it just above the body tag then your users will not receive anything slower than they would before... the script is loaded last and has no affect on the appearance to the user. So there essentially not waiting on anything and even continue to browse through the page without noticing that its still loading.</p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/435475#4354752Answer by Thomas Hansen for Does Google Analytics have peformance overhead?Thomas Hansen2009-01-12T13:55:59Z2009-01-12T13:55:59Z<p>Use FireBug and YSlow to check for yourself. What you will discover however is that GA is about 9KB in size (which is actually quite substantially for what it does) and that it also sometimes does NOT load very fast (for what reasons I don't know, I think it might be the servers "choking" sometimes)</p>
<p>We <em>removed</em> it due to performance issues on our <a href="http://ra-ajax.org/samples/" rel="nofollow">Ajax Samples</a>, but then again for us being <em>ultra fast</em> and responsive was priority 1, 2 and 3</p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/443275#4432751Answer by Mohit Nanda for Does Google Analytics have peformance overhead?Mohit Nanda2009-01-14T15:04:30Z2009-02-27T08:12:05Z<p>Well, I have have searched, researched and expored extensively on net. But I have not found any statistical data that claims either in favour or against of the premise.</p>
<p><strong>However, this excerpt from <a href="http://www.ga-experts.com/blog/2006/06/top-ten-google-analytics-myths-busted/#4" rel="nofollow">http://www.ga-experts.com</a> claims that its a Myth that GA slows down your website.</strong></p>
<blockquote>
<p>Err, well okay, maybe slightly, but
we’re talking about milliseconds. GA
works by page tagging, and any time
you add more content to a web page, it
will increase loading times. However
if you follow best practice (adding
the tag before the <code></body></code> tag) then
your page will load first. Also, bear
in mind that any page tag based web
analytics package (which is the
majority) will work the same way</p>
</blockquote>
<p>From the answers above and all other sources, what I feel is that whatever slowdown it causes in not percieved by the user as the Script is included at the bottom of the page. But if we talk of complete page-loads we might say that it slows down the page-load time.</p>
<p>Please post in more info if you have and DATA if you have any.</p>
http://stackoverflow.com/questions/435228/does-google-analytics-have-peformance-overhead/1184478#11844782Answer by Arjan van Bentem for Does Google Analytics have peformance overhead?Arjan van Bentem2009-07-26T12:37:13Z2009-08-24T09:57:48Z<p>The <a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingOverview.html" rel="nofollow">instructions</a> from Google on how to include <code>ga.js</code> use <code>document.write()</code>. So, even if a browser would somehow asynchronously load external JavaScript libraries until some code is actually to be executed, the <code>document.write()</code> would still block the page loading.</p>
<p>However, Google sets the cache's <code>max-age</code> to <a href="http://web-sniffer.net/?url=www.google-analytics.com%2Fga.js" rel="nofollow">604,800 seconds</a> (one week, and even set to be <em>public</em>, so also applicable to proxies). So, as many sites load the very same Google script, the JavaScript will often be fetched from the cache. Still, <strong>even when <code>ga.js</code> is cached, simply clicking the reload button will often make a browser ask Google about any changes</strong>. And then, just like when <code>ga.js</code> was not cached yet, the browser has to await the response before continuing:</p>
<p><code>GET /ga.js HTTP/1.1<br />
Host: www.google-analytics.com<br />
...<br />
If-Modified-Since: Mon, 22 Jun 2009 20:00:33 GMT<br />
Cache-Control: max-age=0 </p>
<p>HTTP/1.x 304 Not Modified<br />
Last-Modified: Mon, 22 Jun 2009 20:00:33 GMT<br />
Date: Sun, 26 Jul 2009 12:08:27 GMT<br />
Cache-Control: max-age=604800, public<br />
Server: Golfe </code></p>
<p>Note that <strong>many users click reload for news sites, forums and blogs they already have open in a browser window, making many browsers block until a response from Google is received</strong>. How often do you reload the SO home page? When Google Analytics response is slow, then such users will notice right away. There are <a href="http://www.google.com/search?q=asynchronously+load+ga.js" rel="nofollow">many solutions</a> published on the net to asynchronously load the <code>ga.js</code> script, especially useful for these kind of sites.</p>
<p>Once the JavaScript has loaded and executed, the actual loading of the web bug (the tracking image) should be asynchronous. So, <strong>the loading of the tracking image should not block anything else, <em>unless</em> the page uses <code>body.onload()</code></strong>. In this case, if the web bug fails to load promptly then clicking reload actually makes things worse because clicking reload will also make the browser request the script again, with the <code>If-Modified-Since</code> described above. <em>Before</em> the reload the browser was only awaiting the web bug, while <em>after</em> clicking reload it also needs the response for the <code>ga.js</code> script. </p>
<p>So, <strong>sites using Google Analytics should not use <code>body.onload()</code></strong>. Instead, one should use something like jQuery's <a href="http://docs.jquery.com/Events/ready" rel="nofollow">$(document).ready()</a> or MooTools' <a href="http://mootools.net/docs/core/Utilities/DomReady" rel="nofollow">domready event</a>.</p>
<p>See also Google's <a href="http://code.google.com/apis/analytics/docs/concepts/gaConceptsOverview.html" rel="nofollow">Functional Overview</a>, explaining <em>How Does Google Analytics Collect Data?</em>, including <em>How the Tracking Code Works</em>. (This also makes it official that Google collects the contents of first-party cookies. That is: the cookies from the site you're visiting.)</p>