Hey, I need a program like google Analytics, but live in realtime etc. I don't want to wait 24 hours for updates! Can any one reccomend and programs? ~Sohan.
You don't need to wait 24 hours for updates with Google Analytics. I think the average delay is about 3 hours or so
No, just a bit of tracking invocation code, just like any other 3d party stats package. It may be a 1x1 invisble gif or something but nothing you have to worry about.
Look into Urchin (http://www.pop.us/analytics/urchin5.aspx). You can use it in tandem with Google Analytics to analyze the same click stream data that GA gets but process data from your own log files as often as you like. You can process hourly with ease, or set it up to process even more often. -Caleb
Urchin is a purchasable product - not free like Google Analytics. You can get a 15 day trial version for free from http://www.google.com/analytics/urchin_downloads.html. If you don't want to purchase a whole license you can get a hosted service from some places - one I know of is http://www.blueboxgrid.com/services/urchinhosting/. For integration with Google Analytics you'll probably need help from a Google Analytics partner: http://www.google.com/analytics/support_partner_analysis.html. -Caleb
Wow it is hard to spot, on the right side, right above the technical support pricing headline. If they're the masters of analytics, I guess us finding that info isn't a goal! Really I guess it is a goal for you to call instead 'cause it's just a pdf with prices and a contact number.
Not that I know of that provide quality reports that don't have volume capped or require ads. It costs money to provide web analytics services and more money to provide real-time services. There are some relatively cheap ones that require installation on your site: http://www.haveamint.com/ http://mapstats.blogflux.com/ There are some free PHP/MySQL packages you can install too. IF your site is running PHP/MySQL this could be an option and I can point you to a few resources for this. -Caleb
there are different types of stats: external tracking- easier but typically less flexibility, less accurate, and adds a bit of overhead to your load time. on-server tracking- programs that analyze your apache log files. you can have these update as often as you want via crons, etc, but they will use system resources. that said, I use both. I love statcounter.com for simple, overall, longterm trends in traffic. for referrer tracking and keyword tracking I use my own custom scripts.
Note that log analysis apps often do not count out robot-based sessions. This is good for understanding how often bots visit your sites, but bad because it inflates traffic counts 20 to 60%, skewing figures about real human activity. Using a tag-based, javascript/cookie (external) tool and a log analysis tool as disgust is doing is a great strategy. You get a picture of human activity and a picture of bot activity. -Caleb