Hi, I am trying to make a rule that matches 2 items in trap detail.
Here is an example trap:
sysUpTime=87 days 23 hours 6 minutes 23.00 seconds
snmpTrapOID=MRV-IR-TRAP-MIB:irLdamAlarmCleared
irLdAlarmPortIndex=10
irLdAlarmPointIndex=2
irLdAlarmName=GEN_FAULT
irLdAlarmDescription=
irLdAlarmContactState=1
irLdAlarmTrapSeverity=1
irLdAlarmCount=8
I'd like to match on "irLdamAlarmCleared" and "irLdAlarmName=GEN_FAULT"
I have tried:
*irLdamAlarmCleared*irLdAlarmName=GEN_FAULT*
*irLdamAlarmCleared* & *irLdAlarmName=GEN_FAULT*
*irLdamAlarmCleared + *irLdAlarmName=GEN_FAULT
and other permutations of the above...
Anyone able to help with the statement i can use to match 2 items?
Thanks in advance!