vote up 7 vote down star
7

I like to keep my websites extremely light and fast, but of course I need some kind of user tracking and analytics.

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.

I really only care about these metrics: browser, OS, referrer, and # hits per page on a given day or week.

Does anyone have any good suggestions, or is Google Analytics really the best option?

flag

Not a programming question - more of a service/hosting question (who's going to host my stats?) – Adam Davis Oct 20 '08 at 22:04
Maybe you should ask how to improve the performance of some javascript :) – Liam Oct 20 '08 at 22:06
@Adam: I understand. I guess my trouble is that it seems to be a question that only programmers can answer. To be fair, it's more programming related than most "hot" questions on SO. – Eric Wendelin Oct 20 '08 at 22:11

12 Answers

vote up 13 vote down check

It may be the load time that is the main delay. Try hosting the google analytics javascript file locally.

link|flag
A good idea, I didn't consider it before, but I realize I can just use cron to grab the new urchin.js every day. Thanks! – Eric Wendelin Oct 20 '08 at 22:18
I haven't tested it, but I have read good things about it. It is generally not recommended without a cron job to update it, which rules it out for a lot of shared hosting providers. – Liam Oct 20 '08 at 22:23
Right. Luckily I can use cron with my hosting provider. – Eric Wendelin Oct 20 '08 at 23:00
4  
hosting locally has the disadvantage of not using the Google CSN anymore. So even it looks for you like it would be an improvement,people on other continents could see a delay, because the Google scripts would not be hosted nearby anymore – kohlerm Oct 21 '08 at 9:21
2  
If the user has visited any other website using Analytics with urchin.js hosted from Google, then it will be cached in their browser. Downloading it from you will not improve performance. – I Clark May 20 at 6:38
show 3 more comments
vote up 5 vote down

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...

The benefit of hosting yourself is you have complete control over caching etc, and there are less DNS lookups required for your site.

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 :)

link|flag
Yes, I could just use cron to get a new urchin.js every night. That's a good idea! – Eric Wendelin Oct 20 '08 at 22:20
I don't think it would be about missing features (you're not going to miss a feature you're not using, after all), but more about security holes getting patched that would be the real problem. – Bobby Jack Oct 22 '08 at 11:53
vote up 4 vote down

a good alternative is reinvigorate. 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.

link|flag
vote up 4 vote down

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)

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)

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

link|flag
I've never quite understood why this is - I guess I don't fully understand the mechanics of a web browser, even at a very high level. Shouldn't the browser spawn a separate thread for each resource it tries to fetch? Or is this what Google Chrome is all about? – Bobby Jack Oct 22 '08 at 11:55
If a browser executes javascript, it can write HTML into the page as it renders--so the browser needs to download the javascript resource before it can continue rendering. – Chris B. Mar 8 at 4:35
vote up 3 vote down

The problem you're experiencing is just standard I/O blocking whilst javascript loads.

Take a look at this solution: http://lyncd.com/2009/03/better-google-analytics-javascript/

This should process the Google Analytics after the page has loaded.

link|flag
vote up 1 vote down

For the metrics you need, you could use the web logs created by Apache/IIS.

You could then remove the analytics code.

link|flag
vote up 0 vote down

You can simply get hold of your logs and analyse them with a tool such as WebLog Expert Lite to get those metrics.

link|flag
1  
not the OS though – Liam Oct 20 '08 at 22:11
vote up 0 vote down

WebTrends is a pretty effective "paid" service ... though I gotta say, the wiz-bang features of Google Analytics are way cooler.

link|flag
vote up 0 vote down

I've previously had a quick look at Mint, which looks interesting. But I have no information about the speed, and it costs $30 per site.

link|flag
vote up 0 vote down

I'm a fan of Statcounter. 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.

link|flag
vote up 0 vote down

For live tracking you could also try Woopra. 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.

link|flag
vote up 0 vote down

AWStats 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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.