You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I am working on to provide some metrics, hoping someone has a SQL query for Confluence (JIRA too if possible) that provides active users and the last login date
I see these articles:
https://confluence.atlassian.com/confkb/how-to-identify-inactive-users-in-confluence-214335880.html
- unfortunately its not showing active and last login
Confluence Server 7.4.0
JIRA Server 8.12.2
The first article actually works for Jira as well - the cwd_ tables are almost identical for both Jira and Confluence.
If you are not getting data from the columns in the cwd_ tables because they are empty, then you're using a user directory system that does not record it in the application, and you'll need to query that instead.
Thanks, looks like this should work:
SELECT cu.user_name,
cd.directory_name,
li.SUCCESSDATE, cu.active
FROM logininfo li
JOIN user_mapping um ON um.user_key = li.USERNAME
JOIN cwd_user cu ON um.username = cu.user_name
JOIN cwd_directory cd ON cu.directory_id = cd.id
WHERE li.SUCCESSDATE < (getdate() - 30) and cu.active= 'T'
ORDER BY li.SUCCESSDATE;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Community! We're thrilled to share that Team Calendars for Confluence is now a built-in feature for Confluence Data Center releases 7.11 and beyond. A long time favorite, Team Cale...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.