Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In Enterprise Tester 4.10, we are introducing a security audit logging mechanism. It is currently in BETA and defaults to be turned off for now, but for those interested in this feature we would love for you to give it a try and give us your feedbackThe audit logging feature allows administrators to record and track activity for the supported events.  The output format can be configured and the audit logging can be integrated with Syslog.

Supported Events

For the BETA in 4.10, the The following events are supported by the audit logging feature:

...

<!-- security audit logging (Beta) -->

<!-- 

Un-comment the following section to enable security audit logging, which is currently in beta for v4.10 of ET.

This includes a default configuration of text file and syslog appenders. 

-->

<!--

<appender name="securityAuditFile" type="log4net.Appender.RollingFileAppender,log4net" >
	<param name="File" value="App_Data\security-audit.txt" />
	<param name="AppendToFile" value="true" />
	<param name="RollingStyle" value="Date" />
	<param name="DatePattern" value="yyyy.MM.dd" />
	<param name="StaticLogFileName" value="true" />
	<layout type="log4net.Layout.PatternLayout,log4net">
	  <param name="ConversionPattern" value="%d %property{current-user} %property{session-id} [%t] %m%n" />
	</layout>
</appender>

<appender name="securityAuditSyslog" type="log4net.Appender.RemoteSyslogAppender,log4net" >
	<facility value="local7" />
	<identity value="EnterpriseTester" />
	<RemoteAddress value="syslog" />
	<layout type="log4net.Layout.PatternLayout" value="%property{current-user} %property{session-id} [%t] %m%n"/>
	<RemotePort value="516" />
	<layout type="log4net.Layout.PatternLayout,log4net">
	  <param name="ConversionPattern" value="%property{current-user} %property{session-id} [%t] %m%n" />
	</layout>
</appender>

<logger name="EnterpriseTester.Security.Audit" additivity="false">
	<level value="DEBUG" />		
	<appender-ref ref="securityAuditFile" />
	<appender-ref ref="securityAuditSyslog" />		
</logger>

-->

...