Hi there,
I have created 2 UnDP's and would like to make an alert when the value of UnDP 1 becomes less than UnDP 2.
How would i be able to do this? I only managed to create an alert with data from 1 UnDP.
Thanks
A custom SQL alert based on the CustomNodePoller data could do this. I have no custom pollers to test this with at the moment, let me know if his works out
WHERE CustomPollerAssignmentView.CurrentValue < (
SELECT CustomPollerAssignmentView.CurrentValue FROM CustomPollerAssignmentView WHERE
CustomPollerAssignmentView.CustomPollerName='INSERT_POLLER_NAME_HERE'
AND
CustomPollerAssignmentView.NodeID= INSERT_NODEID HERE
)
Actually managed to to this by transforming the 2 undp's. I have made an Alert using its output that triggers when the value is not 0.
Only thing i want now is the alert to show the value of the undp transform.