XYGATE Merged Audit Reference Manual

Table Of Contents
XYGATE Merged Audit
®
Reference Manual
Chapter 3. Configuring Filters and the FILTERS File
XYPRO Technology Corporation 45 Proprietary and Confidential
3.3.3 Step 3: Set the EVALUATE_MSG Keyword
The EVALUATE_MSG keyword determines whether or not the MOVER will search the
FILTERS file for another Filter that matches the selection criteria. Options are:
STOP Once the record satisfies the conditions in a Filter, the evaluation
stops. This is the default value. If the keyword is omitted, then the
default is STOP.
CONTINUE The MOVER will perform the defined ACTION(s) defined in the first
Filter, then continue searching for another Filter that matches the
selection criteria.
EVALUATE_MSG CONTINUE is not permitted if ACTIONTYPE IGNORE has been
specified.
Set EVALUATE_MSG to CONTINUE when you want to send an EMAIL or EMS alert
for example, and also when you want the event sent to the SYSLOGQ.
Syntax:
EVALUATE_MSG (CONTINUE|STOP)
EXAMPLE:
FILTERDEFBEGIN $XYGATEMA-EMS-MSGS
STATUS INACTIVE
EVALUATE_MSG CONTINUE
MOVER_BEGIN
MOVER_SELECT_BEGIN
PRODUCT = EMS
MOVER_SELECT_END
MOVER_END
DATA_BEGIN
DATA_SELECT_BEGIN
FILTERTYPE STRINGFILTER
AUDIT.OBJECTNAME CONTAINS "XYPRO.28"
AUDIT.RESULT NOTCONTAIN "CHECKSUM"
DATA_SELECT_END
DATA_SELECT_BEGIN
FILTERTYPE STRINGFILTER
AUDIT.OBJECTNAME CONTAINS "PATHWAY"
AUDIT.MESSAGEID = 1120
! Insert the correct XMA pathway process name(s):
AUDIT.RESULT LIKE "^.*$XMA.*"
DATA_SELECT_END
DATA_END
ACTIONCOLL_BEGIN
ACTION_BEGIN
ACTIONTYPE SETDATA
AUDIT.USER_DATA XMA'S ems msg
ACTION_END
!= Add other desired ACTIONs here
ACTIONCOLL_END
FILTERDEFEND