Hi folks,
I've done some searching and can't see where I'm going wrong. Scenario:
Using the rule 'alert me when node goes down'. Trigger and reset conditions are default. I've introduced suppression conditions to not trigger alert actions when the sysOID is from two different vendors. I pulled the sysOID values from the nodes table. Here's the query as seen in the alertdefinitions table:
SELECT Count(*) AS Supress FROM Nodes WHERE ( (Nodes.SysObjectID LIKE '1.3.6.1.4.1.2684.1.1%') OR (Nodes.SysObjectID LIKE '1.3.6.1.4.1.368%') )
I manually ran the query and it returns a few hundred rows. To be certain, I modify the query to return hostnames, and confirm the devices are accurate. So I test with one of these devices that is currently down. The alert action still triggers. I must misunderstand how this works. My impression is the alert suppression query serves as a final filter before determining whether or not to trigger an alert and the action.
Insight is appreciated. Thanks!--Drew