How can I display user log-out time and the time spent by user in each session??
As an admin, I want to see the complete history of each user starting from registration to present time.
"user_stats" module is giving some information,

but how can I get the complete information of a user??

Comments

capellic’s picture

Version: 6.x-1.0-rc1 » 6.x-1.x-dev

To my knowledge, the complete history is not available-- only the most recent activity. It was discussed in #233775: Login count quite awhile ago. I was hoping that the DEV version, which appears to be actively developed would have this. But judging by the scheme in the user_stats.install file, it's not tracking history.

The module could easily add a history table for logins much like the User Trend module does (that is discussed in the case). The login count in the user_status_values module could continue to hold the aggregate number.

Would love to see this added.