This page was last edited on October 11, 2018, at 19:37.
Comments or questions about this documentation? Contact us for support!
All administration actions carried out in the Pulse Advisors environment are logged. The following sections give information about how to configure the logging. See also Adjust the Log File Roll and Retention Settings.
The following modules have administrative logging available:
You can find logs related to administrative changes in the AdministrationAudit.log file. The file records changes to configuration and metrics such as creating/deleting metrics and other configuration changes.
Administrative actions are not logged for the following modules:
The administrative actions logging functionality does not capture changes made to contact groups when the contact groups are imported from a WFM system.
The following information is logged for each action:
The audit logs are in a file called:
The file is written to the following directory by default:
You can configure the audit log using the log4j properties in the log4j.properties file, which is located in the following directory:
Advisors\conf
The following information is the definition of the appender that configures the audit logs:
log4j.appender.ADMINISTRATIONAUDIT.append=true
# For 9.0.000
log4j.appender.ADMINISTRATIONAUDIT.file=${catalina.base}/var/log/AdministrationAudit.log
# For 9.0.001+
log4j.appender.ADMINISTRATIONAUDIT.file=${advisors.logs.dir}/advisors-admin-audit.log
log4j.appender.ADMINISTRATIONAUDIT.threshold=INFO
log4j.appender.ADMINISTRATIONAUDIT.datePattern=yyyy-MM-dd
# For 9.0.000
log4j.appender.ADMINISTRATIONAUDIT.suffixPattern='.'yyyy-MM-dd_HH-mm-ss'.log'
# For 9.0.001+
log4j.appender.ADMINISTRATIONAUDIT.suffixPattern='.'yyyy-MM-dd'T'HHmmss'.log'
log4j.appender.ADMINISTRATIONAUDIT.maxFileSize=10MB
log4j.appender.ADMINISTRATIONAUDIT.maxRollFileCount=10
log4j.appender.ADMINISTRATIONAUDIT.scavengeInterval=600000
log4j.appender.ADMINISTRATIONAUDIT.layout=com.informiam.platform.core.logging.StdHeaderPatternLayout
log4j.appender.ADMINISTRATIONAUDIT.layout.ConversionPattern=%d{ISO8601} %t %-5p [%c{1}] %m%n
log4j.appender.ADMINISTRATIONAUDIT.layout.ComponentName=Administration Audit
log4j.appender.ADMINISTRATIONAUDIT.layout.VersionNumber=@platform.version@
The appender ensures the log file names indicate the day on which they were written. If more than one file is written per day, then the name also indicates the order in which the file was produced on that day. For example, in release 9.0.000:
AdministrationAudit.log
AdministrationAudit.log.2011-12-01.1
AdministrationAudit.log.2011-12-01.2
AdministrationAudit.log.2011-11-31.1
AdministrationAudit.log.2011-11-31.2