Forums

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

Disable Jira "Login details" / "User statistics"

Bernd Anderer
Contributor
August 26, 2019

I was wondering if there is a way to disable the "Login details" that an administrator can see in the user list, and the "User statistics" shown in the user details view?

I know this does not make a lot of sense but I have been asked - I can not find a way of doing this.

 

Thanks in advance,

Bernd

1 answer

1 accepted

0 votes
Answer accepted
Andy Heinzer
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 Champions.
August 29, 2019

Hi Bernd,

I understand that you are looking for a way to disable Jira User Management from tracking the login details such as last login time and login count.  Jira does not have a setting at this time to disable the collection of this data.  I also have not yet found any such feature request for this functionality just yet in the JRASERVER project.

However it is possible to clear this data from the database directly.   I should note that this direct SQL changes are not officially supported by Atlassian, and that you should create a backup of your database before you make such changes.  But that said, it could be possible for a SQL admin to remove this data from the database itself.  In my testing I found that running the following statements can remove this data from a Jira Database:

delete from cwd_user_attributes where attribute_name = 'login.lastLoginMillis';
delete from cwd_user_attributes where attribute_name = 'login.count';

However this just removes the current data your Jira database has about these login details.  As soon as that user logs in again to Jira, that data will be updated again.

I hope this helps.

Andy

Bernd Anderer
Contributor
August 29, 2019

Hi Andy,

thank you very much for your answer.

I don't think it is very useful to disable this functionality ;-) A client asked for it and as I didn't find this option, so I though I'll ask. 

Bernd

Suggest an answer

Log in or Sign up to answer