get user last login details

Certified Senior Developer

Hello Everyone,

Is there any approach to retrieve a user's last login details without accessing log files? For example, is there a function or method we could use to capture login information when a user accesses a specific link or application?

Thanks & Regards,

Srikanth.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    I do a combination approach, which includes both a per-site "username login" tracker like Shubmah mentioned above (which tracks the site name and username per day, and writes an updated timestamp if the same user hits the same site multiple times per day); then at the end of the day an automated process reads the login-audit CSV file and reconciles any entries that were missed (such as a user clicking directly into a task from a link in an email) and creates them a fill-in entry in the same table.  This works pretty well overall, and has been low-maintenance since initially setting it up.

Reply
  • 0
    Certified Lead Developer

    I do a combination approach, which includes both a per-site "username login" tracker like Shubmah mentioned above (which tracks the site name and username per day, and writes an updated timestamp if the same user hits the same site multiple times per day); then at the end of the day an automated process reads the login-audit CSV file and reconciles any entries that were missed (such as a user clicking directly into a task from a link in an email) and creates them a fill-in entry in the same table.  This works pretty well overall, and has been low-maintenance since initially setting it up.

Children
No Data