user3395249
user3395249

Reputation: 67

Where is the Alfresco audit log?

curl -u id:pw "http://localhost:8080/alfresco/service/api/audit/query/testapp?verbose=true&limit=200&forward=false"

Where is the Alfresco audit log that could be run by the above command actually stored? I thought it was somewhere in the database but couldn't find it.

Upvotes: 0

Views: 465

Answers (1)

Mardoz
Mardoz

Reputation: 1657

As mentioned in http://wiki.alfresco.com/wiki/Auditing_(from_V3.4):

  • alf_audit_model: Audit configuration files are recorded here.
  • alf_audit_application: An entry for each logical application. There may be several audit applications defined in a single audit model.
  • alf_audit_entry: Each call to AuditComponent.recordAuditValues will result in an entry here. There is a reference to a property.

Upvotes: 1

Related Questions