OSI/FTAM Configuration and Management Manual

FTAM EMS Filters
OSI/FTAM Configuration and Management Manual421944-001
B-2
Filtering All FTAM and APLMGR Event Messages
Filtering All FTAM and APLMGR Event Messages
The example filter EXFLT1 selects all event messages that have the APLMGR or FTAM
subsystem ID. This filter allows you to separate events reported by Tandem FTAM
processes from other events that occur on the system.
-- APLMGR & FTAM Filter - All Events
--!------------------------------------------------------!
--! !
--! File: EXFLT1 !
--! !
--! Description: Filter for selecting all EMS !
--! messages that report events !
--! generated by APLMGR and FTAM !
--! subsystems. !
--!------------------------------------------------------!
[#SET ZOSA^VAL^SSID
[ZSPI^VAL^TANDEM].[ZSPI^SSN^ZOSA].[ZOSA^VAL^VERSION] ]
[#SET ZOSF^VAL^SSID
[ZSPI^VAL^TANDEM].[ZSPI^SSN^ZOSF].[ZOSF^VAL^VERSION] ]
FILTER APLMGR^FTAM^EVENT^FILTER;
BEGIN
IF ZSPI^TKN^SSID = SSID(ZOSA^VAL^SSID) THEN
BEGIN
PASS;
END;
IF ZSPI^TKN^SSID = SSID(ZOSF^VAL^SSID) THEN
BEGIN
PASS;
END;
FAIL; -- Event was not generated by APLMGR or FTAM.
END;
-- EOF --