We have a scheduled app that performs a nightly processing job across several different target "markets".
I'm trying to figure out how to fire off an alert when a market fails to run.
So, let's say I typically see the following events every night:
{"market" : "MarketA", "message" : "Processing Started"}
{"market" : "MarketB", "message" : "Processing Started"}
{"market" : "MarketC", "message" : "Processing Started"}
But then one night, I only get:
{"market" : "MarketA", "message" : "Processing Started"}
{"market" : "MarketC", "message" : "Processing Started"}
Is there any way to fire an alert saying "Market B Failed to Run", or will I need to create an alert for each market individually that checks for zero messages over a 24 hour period?