Dear all,
Would it be possible to know the login out time of each account in the confluence everyday?Or is there any plugin can support the function? Thank you.
Hi Hsu,
Find the below Database table which stores the information.
select distinct(attribute_name) from cwd_user_attributes;
Result Set:
attribute_name
com.atlassian.jira.dvcs.invite.groups
invalidPasswordAttempts
lastAuthenticated
login.count
login.currentFailedCount
login.lastFailedLoginMillis
login.lastLoginMillis
login.previousLoginMillis
login.totalFailedCount
password.reset.request.expiry
password.reset.request.token
passwordLastChanged
requiresPasswordChange
select user_id,attribute_name,attribute_value from cwd_user_attributes where attribute_name = <'One of the above you are interested in'>;
Hope this helps
Regards
Chander
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.