Audit Addon Exporting Results
Exporting Results
In order to download event data, click the "Download" button just above the search results.
Search results may be exported in either CSV or JSON formats.
If no text or facet filters have been added to the search, all events will be exported. For more refined exports, refine the search. You may read about refining the search on the Dashboard overview documentation and common Use Cases documentation.
CSV Export
Intended for end users, the CSV export will only export the fields currently applied as columns in the UI.
Below is an example of a CSV export for a publish event on a news document.
Date/Time,Category,Action,User,Path 6/27/2024 3:54:55 PM,workflow,publish,admin,/content/documents/myproject/news/2024/06/the-medusa-news
JSON Export
Intended for developers, the JSON export will export all fields for the event, including empty and null values.
Below is the same example event from the CSV export, but done in JSON.
[ { "action": "publish", "category": "workflow", "channel": "", "datetime": "6/27/2024, 3:54:55 PM", "message": "", "projectID": "", "timestamp": 1719518095579, "user": "admin", "usersWithChanges": "", "pageContext": "", "workflowContext": "{\"path\":\"/content/documents/myproject/news/2024/06/the-medusa-news\",\"lastModificationDate\":1719518093905,\"documentType\":\"myproject:newsdocument\",\"createdBy\":\"admin\",\"lastModifiedBy\":\"admin\",\"creationDate\":1384257780000,\"lastPublishedBy\":\"admin\",\"lastPublicationDate\":1719518095534,\"uuid\":\"c580ac64-3874-4717-a6d9-e5ad72080abe\"}", "createdBy": "admin", "creationDate": "11/12/2013, 7:03:00 AM", "documentType": "myproject:newsdocument", "folderType": "", "fromPath": "", "lastModificationDate": "6/27/2024, 3:54:53 PM", "lastModifiedBy": "admin", "lastPublicationDate": "6/27/2024, 3:54:55 PM", "lastPublishedBy": "admin", "name": "", "path": "/content/documents/myproject/news/2024/06/the-medusa-news", "scheduledDate": "", "toPath": "", "uuid": "c580ac64-3874-4717-a6d9-e5ad72080abe" } ]