The Sentinel provisioning system audits every write operation (create, update, and delete) that goes through it. This includes changes made both through the web-based GUI and via the machine REST API.
By default, the audit messages are written to the main REM or Apache Tomcat log.
To write the audit messages out to a separate, CSV-formatted file, add the following settings to the REM or Tomcat log4j.properties
file.
log4j.logger.sentinel.audit=INFO, AUDIT log4j.additivity.sentinel.audit=false log4j.appender.AUDIT=org.apache.log4j.RollingFileAppender log4j.appender.AUDIT.File=${rem.home}/sentinel-audit.log log4j.appender.AUDIT.MaxBackupIndex=10 log4j.appender.AUDIT.MaxFileSize=10MB log4j.appender.AUDIT.layout=org.apache.log4j.PatternLayout log4j.appender.AUDIT.layout.ConversionPattern="%d{yyyy-MM-dd HH:mm:ss,SSS}", "%c{1}", %m%n
If you wish to disable the audit messages completely then add the following settings to the REM or Tomcat log4j.properties
file.
log4j.logger.sentinel.audit=NONE