Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
shirinM
Contributor
Contributor

Get Audit log events from Qlik on App level

HI,

Is there any REST specific endpoint that I can call to get the audit trail of what all happens over an app level. 

Requirement: Need to fetch all the actions done on an app and the actors behind this

Labels (2)
3 Replies
tunosvin
Contributor
Contributor

Do it in the data layer. Every time something gets committed to the database, you create a new record where you store what was committed. Something like objecttype, id, old value, new value, user, timestamp, operation You can extend that by also saving the source or other information you'd like to store along with the audit trail.

Nicolae_Alecu
Creator
Creator

Hello @shirinM ,

For QlikSense Enterprise you can try this:

In QMC > Engine > Logging -> Set Audit Log Level = Info.

In this location ArchivedLogs\YourNode\Engine\Trace you will find YourNode_Audit_Engine_DateTime.log.

Also, if you want to analyze live data, you will find the log in ProgramData\Qlik\Sense\Log\Engine\Trace

Best Regards,

shirinM
Contributor
Contributor
Author

hi @Nicolae_Alecu - i wanted to automate getting these logs via script, not refer to the .log files, can i call an endpoint to query the app audit logs?