Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

confluence active users

Jean-Philippe_Faivre
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 23, 2016

How do we know who is actively using confluence?  Last Login, Activity, etc.. in one report...

1 answer

0 votes
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 23, 2016

We use JIRA to manage Confluence users and we get last login date via this SQL

declare @startDate datetime = '1970-1-1';
Select
	cwd_user.display_name	as 'user name'
--	, cwd_user_attributes.*
	, CAST(  dateaDD(SECOND, CAST(cwd_user_attributes.attribute_value as bigint)/1000, @startDate ) as DATE) as 'last login date'
from
	cwd_user
	join	cwd_user_attributes on cwd_user.ID = cwd_user_attributes.user_id
where	
	cwd_user_attributes.attribute_name = 'login.lastLoginMillis'
--	and cwd_user.email_address = 'vzverev@phosagro.ru'
order by
	CAST(cwd_user_attributes.attribute_value as bigint) asc

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events