Is there a SaaS for logging user activity?

Posted by JoshL on Stack Overflow See other posts from Stack Overflow or by JoshL
Published on 2011-12-26T18:52:40Z Indexed on 2012/12/07 23:05 UTC
Read the original article Hit count: 177

Filed under:
|
|
|

In almost every app that I build I create some kind of user log table to log various activities that my actual USERS (not visitors, but someone with an account) perform on the site. This is primarily used for customer service issues to allow me to pull up a record of the pages and actions that a user has visited.

The downside to this is the size of the UserLogs table. It gets immense. I'm not sure if it is common practice or not for others to log INDIVIDUAL (not aggregate like Google Analytics) user behavior to a database, but if it is I'm wondering if any form of a SaaS exists to help offload this task? I essentially need a RESTful API that lets me store and retrieve individual user activity quickly and securely.

Anyone know of any or am I the only one who has this issue?

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about api