What I'm looking to do is create a single node down alert in NPM that would allow me to trigger the alert based on the node being down for 2 polling cycles instead of "X" amount of minutes.
Use case is: We have some nodes being polled every 2 minutes, some every 5 minutes, some every 10 minutes. It's completely possible that these times might change, or additional times may be added. We want the alert to trigger if any node has missed 2 polling cycles. So for nodes polled every 2 minutes the trigger would be at 4 minutes, nodes polled every 5 minutes would trigger at 10 minutes, and nodes polled every 10 minutes would trigger at 20 minutes.
There are about 10,000 nodes, so we don't want to break these into multiple node down alerts with different times, we simply want it to trigger after being marked down for 2 polling cycles. Does anybody know of a good clean way of accomplishing this?
I tried using the Skipped Polling Cycles option as a trigger but it did not trigger after being down for multiple polling cycles. Any additional help would be great! Thanks.