Auditing WARN or FATAL Messages
As well as auditing ERROR and some or all AUDIT messages, you can add messages of a different severity level.
Procedure
-
Find the
CONFIG_HOME\bpm\bpm_app_name\configuration\ec-probe-rules.xml file.
-
Back the file up to a safe location.
-
Open the file in an editor and locate the
BaseErrorWarnRule section.
<rule name="BaseErrorWarnRule" ruleOrder="1000">
<filter>
<severities>
<severity>ERROR</severity>
</severities>
</filter>
<action>
<messageProcess>CentralECErrWarnProcess</messageProcess>
</action>
</rule>
-
Add an additional
line for each severity level that you wish to include, for example:
<rule name="BaseErrorWarnRule" ruleOrder="1000">
<filter>
<severities>
<severity>ERROR</severity>
<severity>WARN</severity>
<severity>FATAL</severity>
</severities>
</filter>
<action>
<messageProcess>CentralECErrWarnProcess</messageProcess>
</action>
</rule>
-
Save and close the file. The changes take effect immediately.
Copyright © Cloud Software Group, Inc. All rights reserved.