We are using Jira and Confluence Data Center and we want to find the list of Users that have a failed login in a certain time period (For exp: from 01-12-2020 to 20.02.2024)
I found this query that lists all attempted logins, but not during the time period that was required:
select U.user_name,U.email_address,A.attribute_name, A.attribute_value
from cwd_user_attributes A
inner join cwd_user U
on A.user_id= U.ID
where A.attribute_name = 'login.totalFailedCount'
order by 1;
Check this post, there you can find how to add the DATE to the query:
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.