Expand my Community achievements bar.

July 31st AEM Gems Webinar: Elevate your AEM development to master the integration of private GitHub repositories within AEM Cloud Manager.
SOLVED

Auditing Report

Avatar

Level 6

Hi,

Does AEM provide any OOTB Auditing Report?

I mean a report that states which configurations were changed and who made them, and things like that.

Is there this funcionality OOTB or via third party component?

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 10

Out of the box reporting for AEM is documented here:

https://docs.adobe.com/docs/en/aem/6-0/administer/operations/reporting.html

Another option that you can explore is building your own tool that knows how to query the AEM JCR and dump the results out to a report - for example - an Excel spreadsheet. Here is an example of a Java app querying the JCR for user information and dumping the data to an Excel report: 

https://helpx.adobe.com/experience-manager/using/java-swing-applications.html

In your use case - you would need to query the JCR nodes that contain the information related to applicable configurations. 

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

Out of the box reporting for AEM is documented here:

https://docs.adobe.com/docs/en/aem/6-0/administer/operations/reporting.html

Another option that you can explore is building your own tool that knows how to query the AEM JCR and dump the results out to a report - for example - an Excel spreadsheet. Here is an example of a Java app querying the JCR for user information and dumping the data to an Excel report: 

https://helpx.adobe.com/experience-manager/using/java-swing-applications.html

In your use case - you would need to query the JCR nodes that contain the information related to applicable configurations.