Hello,
I've been struggling all afternoon with what I thought would have been an easy alert to set up. I have a UnDP named "Status" that queries a Sharp printer to return its current status. This functions, as on the node's page it almost invariably shows a status of "Ready" and occasionally one of "Printing". I would like to set up an alert that triggers should this status be anything but those two responses.
I set up a trigger condition to fire off when all of the following apply:
Poller Name is equal to Status (keep in mind, that's the UnDP's name)
Status is not equal to Ready
Status is not equal to Printing
However, I quickly found that this alert *always* triggers. I made a trigger action contain the following in the body:
Status is ${Status}
Assignment Name is ${AssignmentName}
Custom OID is ${CustomPollers.OID}
Custom Unique Name is ${CustomPollers.UniqueName}
Custom Rate is ${CustomPollerStatus.Rate}
Custom Raw Status is ${CustomPollerStatus.RawStatus}
Custom Status is ${CustomPollerStatus.Status}
Custom Total is ${CustomPollerStatus.Total}
As such, I get the following in an email:
Status is Unknown
Assignment Name is Status on AR-M350 - 6th Floor HR
Custom OID is 1.3.6.1.4.1.1536.1.3.2.1.11.1
Custom Unique Name is Status
Custom Rate is
Custom Raw Status is
Custom Status is Ready
Custom Total is
Thus, it seems like "Custom Status" is what I want, not "Status". How do I make this work?