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 SiteMeter before_filter :use_site_meter end Or to track specific controllers: class ApplicationController < ActionController::Base include SiteMeter end class MyController < ApplicationController before_filter :use_site_meter end And to view your stats just add "/sitemeter" to your main url: http://www.example.com/sitemeter Feedbacks, bug reports, etc are always welcome :-) For more info => http://sitemeter.rubyforge.org -- Thiago Jackiw acts_as_solr => http://acts-as-solr.rubyforge.org/ SiteMeter => http://sitemeter.rubyforge.org -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thiago, this is awesome! Just what was missing. Great work! -- Mark Thiago Jackiw wrote:> 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 SiteMeter > before_filter :use_site_meter > end > > Or to track specific controllers: > > class ApplicationController < ActionController::Base > include SiteMeter > end > > class MyController < ApplicationController > before_filter :use_site_meter > end > > And to view your stats just add "/sitemeter" to your main url: > > http://www.example.com/sitemeter > > > Feedbacks, bug reports, etc are always welcome :-) > > For more info => http://sitemeter.rubyforge.org > > -- > Thiago Jackiw > acts_as_solr => http://acts-as-solr.rubyforge.org/ > SiteMeter => http://sitemeter.rubyforge.org-- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
bcparanj-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2007-Mar-09 04:04 UTC
Re: SiteMeter v.1.0 Web Stats plugin
This is a very cool plugin. I was thinking about developing the same plugin. It would be nice to have the following features: 1) Calculate the conversion ratio (either how many users signup or buy product). 2) Show the entry and exit pages. 3) Navigation path of the users. 4) How much time users spend on reading the sales letter. 5) Traffic tracking to find the busiest day and time for the site. I would be willing to work on these features and incorporate this into the existing plugin. I know Google analytics provide some stats but it is not a good idea to give such private information to Google. Obviously they use that data to maximize their profits by charging websites more for the Ads.> http://www.example.com/sitemeter > > Feedbacks, bug reports, etc are always welcome :-) > > For more info =>http://sitemeter.rubyforge.org >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Is there a demo page up somewhere? Maybe an example sitemeter output page? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
http://www.bacotp.com/sitemeter but you might want to pay a visit to the site first http://www.bacotp.com/ cause it hasn''t reach the 5 visitors queue as of yet :) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Friday 09 March 2007, Patrick Aljord wrote:> http://www.bacotp.com/sitemeterUm, Patrick, the markup is pretty much broken. In the top-level page, the first thing is a style element. Only after that comes the doctype. The opening <html> tag is missing. The individual frames begin with style elements. There are no doctypes, no html, head, or body elements, just further HTML markup. The encoding is not correctly specified for the contents, apparently it ought to be UTF-8. Michael -- Michael Schuerig mailto:michael-q5aiKMLteq4b1SvskN2V4Q@public.gmane.org http://www.schuerig.de/michael/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 3/9/07, Michael Schuerig <michael-q5aiKMLteq4b1SvskN2V4Q@public.gmane.org> wrote:> > On Friday 09 March 2007, Patrick Aljord wrote: > > http://www.bacotp.com/sitemeter > > Um, Patrick, the markup is pretty much broken.Um, Michael this is not my plugin, this is Thiago''s :-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Saturday 10 March 2007, Patrick Aljord wrote:> On 3/9/07, Michael Schuerig <michael-q5aiKMLteq4b1SvskN2V4Q@public.gmane.org> wrote: > > On Friday 09 March 2007, Patrick Aljord wrote: > > > http://www.bacotp.com/sitemeter > > > > Um, Patrick, the markup is pretty much broken. > > Um, Michael this is not my plugin, this is Thiago''s :-)Yes, I noticed it, but only after replying. Still, the markup is a mess. Michael -- Michael Schuerig mailto:michael-q5aiKMLteq4b1SvskN2V4Q@public.gmane.org http://www.schuerig.de/michael/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Nice plugin! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Looks like a really good kickstart to a "just what you want" stats add- on, thanks for releasing ... sure I''ll find a use for this soon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
tjackiw-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2007-Mar-12 22:50 UTC
Re: SiteMeter v.1.0 Web Stats plugin
Thanks for all the feedbacks. Michael, the markup issue you pointed out will be fixed soon. Thanks. -- Thiago Jackiw acts_as_solr => http://acts-as-solr.rubyforge.org/ SiteMeter => http://sitemeter.rubyforge.org On Mar 12, 5:19 am, "chrisfarms" <chrisfa...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Looks like a really good kickstart to a "just what you want" stats add- > on, > > thanks for releasing ... sure I''ll find a use for this soon--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
bcparanj-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2007-Mar-18 19:41 UTC
Re: SiteMeter v.1.0 Web Stats plugin
Thiago, I documented the features because I had to remove the same functionality in my app. Here it is: 1) Summary Display graphs to show monthly and daily hits. Tabular display of month, hits, percentage and unique visits for monthly hits. Tabular display of day, hits, percentage and unique visits for daily hits. 2) Hourly Statistics for a chosen period (month/year). Tabular display of hour, hits and percentage with the last column showing a bar graph. 3) Referrer Statistics Page URLs Top 30 - Tabular display of Hits, Page URL and Percentage Referrers - Top 30 - Tabular display of Hits, Referrer and Percentage. 4) Search Statistics Robots/Crawlers, Top Domains - Tabular display of hits and domain, Search Strings - Top 30 5) Visitor Info Hosts - Tabular display of Hits, Hostname (IP Address), Percentage. Operating Systems - Tabular display of Hits, Operating System, Percentage Browsers - Tabular display of Hits, Browser, Version, Percentage Languages - Top 15 - Tabular display of hits, language and percentage. Please include it in either README file or on the home page. This will help developers to see whether they need to write code for additional functionality. On Mar 12, 6:50 pm, "tjac...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org" <tjac...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Thanks for all the feedbacks. Michael, the markup issue you pointed > out will be fixed soon. > > Thanks. > > -- > Thiago Jackiw > acts_as_solr =>http://acts-as-solr.rubyforge.org/ > SiteMeter =>http://sitemeter.rubyforge.org > > On Mar 12, 5:19 am, "chrisfarms" <chrisfa...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Looks like a really good kickstart to a "just what you want" stats add- > > on, > > > thanks for releasing ... sure I''ll find a use for this soon--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---