This plugin lets you track visitors, referrers, robots, search terms and more. And all the data processing is done when viewing the stats and not when saving the data, so it shouldn’t influence on your site’s performance.
It’s very easy using it:
To track the visitors on your entire application, just edit your ApplicationController (application.rb):
class ApplicationController < ActionController::Base
include Sitealizer
before_filter :use_sitealizer
end
Or to track specific controllers:
class ApplicationController < ActionController::Base
include Sitealizer
end
class MyController < ApplicationController
before_filter :use_sitealizer
end
And to view your stats just add ”/sitealizer” to your main url:
<a href="http://www.example.com/sitealizer">http://www.example.com/sitealizer</a>
Feedbacks, bug reports, etc are always welcome :-)
For more info => http://sitealizer.rubyforge.org