I have a ruby on rails application and it would be nice to see how many hits I get per hour. Is there some simple free software to do this or do I have to develop a custom solution? Thanks!
5 Answers
Other options:
You can use log analyzers but you also get some delay as most of them should be ran by something like cron (and info will not be as complete as with google analytics)
Another option is to add some before_filter to your ApplicationController and write info to db (info also will not be as complete) or search for plugin with such functionality

- 25,841
- 10
- 64
- 96
-
it's not a bad idea but last time i checked it has a delay which i don't like. i will probably use google analytics but it would be nice to have something to view traffic more as it happens – Tony Oct 22 '09 at 15:53
-
As I know delay is about a day, but to use it you need just a small piece of javascript and you get a lot of info. – tig Oct 22 '09 at 16:56
-
1Actually, you can get traffic data the same day. Google Analytics just doesn't default to that. Simply change the date range to include today. – Jared Oct 22 '09 at 22:49
-
Thank you Jared! I think that they are not showing this day statistics not to frighten, as it will be very low )) – tig Oct 22 '09 at 23:03
Check out Woopra. They have a java application that you can download and run to analyze your traffic and visitors in a very visual manner. Also you can literally see ping dots on a global map showing instantaneous visitors. You install a piece of javascript code and then users visiting your site will be tracked similar to google's analytics, but in a more immediate and in my opinion useful manner.
There's a lot more features that they have available like tracking the page progression that a user clicks through, and others.

- 7,729
- 6
- 45
- 65
I absolutely LOVE glTail.rb http://www.fudgie.org/
it's on github here: http://github.com/Fudge/gltail
Best part is, it's open source, Ruby, and free. :-D

- 19,404
- 4
- 52
- 40