There is no single tool but you can do the following:
Launch Event Configuration
Display Event Code, Cause Code and Trap Event columns in the Navigation panel
Export
Open exported file in xcel
Filter on Cause Code and Trap Event columns
Display all but Blank in the Cause Code column
Display only TRUE in Trap Event Column
This should be all the trap events that generate an alarm
Copy all of the events to a text file in the $SPECROOT/SS/CsVendor directory. For example, Trap_Events.out
Create the following script: (named mine FindTrapEvents.sh)
#!/bin/sh
for i in `cat Trap_Events.out`
do
find . -name EventDisp -exec grep $i {} \; >> out
done
Set permissions to execute
Run the script
The out file will look similar to the following:
0x00d82b27 E 90 A 2,0x00d82b27
0x00d82b28 E 90 A 2,0x00d82b28
0x00d82b29 E 90 A 2,0x00d82b29
0x00d82b2a E 90 A 2,0x00d82b2a
0x00d82b2b E 60 A 1,0x00d82b2b,1
0x00d82b2c E 10 C 0x00d82b2b,1
0x00d82b2d E 60 A 1,0x00d82b2d
0x00d82b31 E 60 A 1,0x00d82b31
0x00d82b32 E 60 A 1,0x00d82b32
0x00d82b33 E 90 A 2,0x00d82b33
Anything with an "A" is an alarm. The number to the right of the A is the severity of the alarm. 1 = Minor, 2 = Major, 3 = Critical.
If there is a "C" that means that event clears an alarm.
Joe