Hi Ankita
You can use below query and run it on your JIRA database. It will let you know if the users logged into JIRA in past 90 days.
SELECT d.directory_name AS "Directory",
u.user_name AS "Username",
from_unixtime((cast(attribute_value AS UNSIGNED)/1000),'%m/%d/%Y') AS "Last Login"
FROM cwd_user u
LEFT JOIN (
SELECT *
FROM cwd_user_attributes
WHERE attribute_name = 'login.lastLoginMillis'
) AS a ON a.user_id = u.id
JOIN cwd_directory d ON u.directory_id = d.id
where cast(attribute_value AS UNSIGNED)/1000 BETWEEN UNIX_TIMESTAMP(DATE_SUB(now(),INTERVAL 90 DAY)) AND UNIX_TIMESTAMP(now())
ORDER BY "Last Login" DESC;
You can reverse the condition and find out who have not logged in past 90 days.
Regards
Prakhar
Hi Prakhar, Thanks for your help. Our JIRA instance was recently moved to cloud. earlier it used ldap authentication. Now the issue is that, the new JIRA instance shows "never logged in" for the users who have not logged in to the new instance. so we do not know if a user has actually never logged in or just not logged in to the new instance. will this query help me in that case?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure about the cloud instance. Though attribute
login.lastLoginMillis shows the last time user has logged in.
You might need to run few test to confirm that if this attribute's value has not been overridden while mirating your JIRA instance to cloud.
Regards
Prakhar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In /admin/users on your Atlassian Cloud instance every user will have "last session" next to their account that you can use to see how recently they have authenticated with your Atlassian Cloud instance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.