Alex Smith
Alex Smith

Reputation: 385

Is there a Rails Gem for Page Stats?

I'm allowing users to create sites within my application, and I want to provide simple stats to them like the number of page views. Is there a Rails gem that I can implement to do this?

Upvotes: 4

Views: 3367

Answers (2)

tmarkiewicz
tmarkiewicz

Reputation: 515

Try out the StatsMix gem. You can use it to track any action or event in your application. Disclaimer: I'm the founder and it's a subscription based (paid) service. We do have a free developer plan though and have the abilty to embed charts and dashboards to easily allow for providing stats to your users.

Upvotes: 1

Kulbir Saini
Kulbir Saini

Reputation: 3915

Check this similar question simple hit counter for page views in rails. Based on the answer to the mentioned question, a gem named impressionist was created by John McAliley. The gem is Rails 3 ready, so you can include it in your app directly.

Upvotes: 2

Related Questions