OpenIDM exposes the audit logging configuration under
http://localhost:8080/openidm/config/audit
for the REST API, and in the file conf/audit.json where
you installed OpenIDM. The default conf/audit.json file
contains the following object.
{
"eventTypes" : {
"activity" : {
"filter" : {
"actions" : [
"create",
"update",
"delete",
"patch",
"action"
]
},
"watchedFields" : [ ],
"passwordFields" : [ "password" ]
},
"recon" : { }
},
"logTo" : [
{
"logType" : "csv",
"location" : "audit",
"recordDelimiter" : ";"
},
{
"logType" : "repository",
"useForQueries" : true
}
],
"exceptionFormatter" : {
"type" : "text/javascript",
"file" : "bin/defaults/script/audit/stacktraceFormatter.js"
}
}
