Expand my Community achievements bar.

SOLVED

User Activity Report

Avatar

Level 1

I would really like to be able to run a report that will tell me when my users log in and how often they log in. If I could also know what they did (edit, upload asset, publish) that would be awesome. This seems like a report that would be fairly standard for user management. I want to reduce the number of users and knowing this data would be a huge help in determining who should stay.

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 5
2 Replies

Avatar

Correct answer by
Level 5

Avatar

Level 3

I used the information based on the following blog to create a ACS AEM report to generate this type of report. After adding the profile/lastloggedin property, here's the query that I use in the configuration:

SELECT * FROM [rep:User] AS user WHERE ISDESCENDANTNODE([/home/users/]) AND [profile/familyName] is not null AND [profile/givenName] is not null AND [profile/email] is not null ORDER BY {{order}} 

https://www.albinsblog.com/2020/09/adobe-experience-manager-reporting-on-users-last-login-date.html#...

 

flow-chart.png