Publishing Audit Events
Minimum Required Role: Navigator Administrator (also provided by Full Administrator)
You can publish audit events to a Kafka topic or syslog.
A failure to send an event to Kafka or syslog is logged to the Audit Server log.
Publishing Audit Events to Kafka
- Do one of the following:
- Select .
- On the Status tab of the Cloudera Management Service table, click the Cloudera Management Service link. tab, in
- Click the Configuration tab.
- Locate the Navigator Audit Server Logging Advanced Configuration Snippet property by typing its name in the Search box.
- Enter:
log4j.logger.kafkaAuditStream=TRACE,KAFKA log4j.appender.KAFKA=kafka.producer.KafkaLog4jAppender log4j.additivity.com.cloudera.navigator.kafkaAuditStream=false log4j.appender.KAFKA.layout=org.apache.log4j.PatternLayout log4j.appender.KAFKA.layout.ConversionPattern=%m%n log4j.appender.KAFKA.SyncSend=false log4j.appender.KAFKA.BrokerList=broker_host:broker_port log4j.appender.KAFKA.Topic=NavigatorAuditEvents
Where broker_host and broker_port are the host and port of the Kafka service. - Click Save Changes to commit the changes.
- Restart the role.
Publishing Audit Events to Syslog
The Audit Server logs all audit records into a Log4j logger called auditStream. The log messages are logged at the TRACE level, with the attributes of the audit records. By default, the auditStream logger is inactive because the logger level is set to FATAL. It is also connected to a NullAppender, and does not forward to other appenders (additivity set to false).
To record the audit stream, configure the auditStream logger with the desired appender. For example, the standard SyslogAppender allows you to send the audit records to a remote syslog.
$ModLoad imudp $UDPServerRun 514 # Accept everything (even DEBUG messages) local2.* /my/audit/trail.log
- Do one of the following:
- Select .
- On the Status tab of the Cloudera Management Service table, click the Cloudera Management Service link. tab, in
- Click the Configuration tab.
- Locate the Navigator Audit Server Logging Advanced Configuration Snippet property by typing its name in the Search box.
- Depending on the format type, enter:
log4j.appender.SYSLOG = org.apache.log4j.net.SyslogAppender log4j.appender.SYSLOG.SyslogHost = hostname log4j.appender.SYSLOG.Facility = Local2 log4j.appender.SYSLOG.FacilityPrinting = true
To configure the specific stream type, enter:Format Property JSON log4j.logger.auditStream = TRACE,SYSLOG log4j.additivity.auditStream = false
RSA EnVision log4j.logger.auditStreamEnVision = TRACE,SYSLOG log4j.additivity.auditStreamEnVision = false
- Click Save Changes to commit the changes.
- Restart the role.