What I would like to do is what my user admin will be able to see - in real time (through some nice AJAX / jQuery) - what my user is doing.
How should I do it?
I assume that it has something to do with session activity - and I started saving the session in db, not a cookie.
But generally speaking, how can I take this information and analyze it in real time?
I looked at my session table and besides identifiers (id and session_id), I see a data field. This data field contains a hash that I cannot understand (looks like an md5 hash).
How can I use this to see that user A just clicked on link B, and right after that, user B clicked on link A, etc.?
Is there a gem - besides a bell - that can help me?
source
share