Is there a faster alternative to Google Analytics? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T02:39:11Z http://stackoverflow.com/feeds/question/220112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics 7 Is there a faster alternative to Google Analytics? Eric Wendelin 2008-10-20T22:02:13Z 2009-05-20T06:30:24Z <p>I like to keep my websites extremely light and fast, but of course I need some kind of user tracking and analytics. </p> <p>It seems like Google Analytics always takes significant enough processing time that I'd like to replace it with something faster (and/or hosted locally), perhaps having less features. </p> <p>I really only care about these metrics: browser, OS, referrer, and # hits per page on a given day or week. </p> <p>Does anyone have any good suggestions, or is Google Analytics really the best option?</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220115#220115 13 Answer by Liam for Is there a faster alternative to Google Analytics? Liam 2008-10-20T22:05:37Z 2008-10-20T22:05:37Z <p>It may be the load time that is the main delay. Try hosting the google analytics javascript file locally.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220116#220116 4 Answer by jeds for Is there a faster alternative to Google Analytics? jeds 2008-10-20T22:08:11Z 2008-10-20T22:08:11Z <p>a good alternative is <a href="http://reinvigorate.net/" rel="nofollow">reinvigorate</a>. It gives you stats in "real time" and (in my opinion) is a little faster, but it doesn't have as many options as g-analytics.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220121#220121 0 Answer by BlackWasp for Is there a faster alternative to Google Analytics? BlackWasp 2008-10-20T22:09:51Z 2008-10-20T22:09:51Z <p>You can simply get hold of your logs and analyse them with a tool such as WebLog Expert Lite to get those metrics.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220127#220127 1 Answer by Peter Rounce for Is there a faster alternative to Google Analytics? Peter Rounce 2008-10-20T22:11:29Z 2008-10-20T22:11:29Z <p>For the metrics you need, you could use the web logs created by Apache/IIS.</p> <p>You could then remove the analytics code.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220129#220129 0 Answer by Ken for Is there a faster alternative to Google Analytics? Ken 2008-10-20T22:12:19Z 2008-10-20T22:12:19Z <p><a href="http://www.webtrends.com" rel="nofollow">WebTrends</a> is a pretty effective "paid" service ... though I gotta say, the wiz-bang features of Google Analytics are way cooler.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220137#220137 5 Answer by Matthew Savage for Is there a faster alternative to Google Analytics? Matthew Savage 2008-10-20T22:15:27Z 2008-10-20T22:15:27Z <p>I second hosting the GA javascript file yourself - the only downfall is that if google updates the file your copy will be old and you may miss out on certain features - however you could mitigate this by having a script pull down the latest version each week...</p> <p>The benefit of hosting yourself is you have complete control over caching etc, and there are less DNS lookups required for your site.</p> <p>The other issue your probably facing is the delay (which is up to 24 hours) for the data to be updated, but for something that costs nothing I'm not complaining too much :)</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220170#220170 4 Answer by dbr for Is there a faster alternative to Google Analytics? dbr 2008-10-20T22:29:26Z 2008-10-20T22:29:26Z <p>Loading the urchin.js script as the very end of the page shouldn't slow page-loading down (as it will load your web-page, then contact Google Analytics). That also means it wont freeze your page if the urchin.js URL is temporarily unreachable for whatever reason (say, a slow DNS lookup)</p> <p>Routinely download urchin.js and serving it locally will speed things up too. Updating it once an hour would be more than enough (given that it usually gets one request per page-view, once an hour is trivial)</p> <p>I guess if you are really concerned, you could look into modifying urchin.js to make it less resource intensive, or working out what it does, and simplifying it (I would recommend checking if someone else has already done this first), but I don't think the JS execution time will be slowing your web-page down noticeably</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220180#220180 0 Answer by TimB for Is there a faster alternative to Google Analytics? TimB 2008-10-20T22:35:11Z 2008-10-20T22:35:11Z <p>I've previously had a quick look at <a href="http://haveamint.com/" rel="nofollow">Mint</a>, which looks interesting. But I have no information about the speed, and it costs $30 per site.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220191#220191 0 Answer by eaolson for Is there a faster alternative to Google Analytics? eaolson 2008-10-20T22:41:02Z 2008-10-20T22:41:02Z <p>I'm a fan of <a href="http://www.statcounter.com" rel="nofollow">Statcounter</a>. It seems less intrusive that some of the free tools I've tried and I've never had it make anything seem sluggish. The log size for free accounts is the last 500 hits, but that's expandable for a fee.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/515486#515486 0 Answer by MS ACA for Is there a faster alternative to Google Analytics? MS ACA 2009-02-05T11:18:56Z 2009-02-05T11:18:56Z <p>For live tracking you could also try <a href="http://www.woopra.com" rel="nofollow">Woopra</a>. It is pretty stable and fast, but only allows for 10.000 pageviews a day currently as they are still in Beta. Thye have some nice feature, like live chat with your visitors.. It'not so good for conversion tracking though, but could be overcome by using good parameters in your url and ads.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/777800#777800 3 Answer by Mark Worth for Is there a faster alternative to Google Analytics? Mark Worth 2009-04-22T15:23:24Z 2009-04-22T15:23:24Z <p>The problem you're experiencing is just standard I/O blocking whilst javascript loads.</p> <p>Take a look at this solution: <a href="http://lyncd.com/2009/03/better-google-analytics-javascript/" rel="nofollow">http://lyncd.com/2009/03/better-google-analytics-javascript/</a></p> <p>This should process the Google Analytics <em>after the page has loaded</em>.</p> http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/886437#886437 0 Answer by SpliFF for Is there a faster alternative to Google Analytics? SpliFF 2009-05-20T06:30:24Z 2009-05-20T06:30:24Z <p><a href="http://awstats.sourceforge.net" rel="nofollow">AWStats</a> will give you very thorough and well-presented stats just by parsing your log file daily. It also has a lightweight JS for more advanced stats like plugins and screen size.</p>