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

  1. Find the CONFIG_HOME\bpm\bpm_app_name\configuration\ec-probe-rules.xml file.
  2. Back the file up to a safe location.
  3. 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>
  4. Add an additional <severity > 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>
  5. Save and close the file. The changes take effect immediately.