I have a azure timmertrigger function that runs at 12:05 every 26th of the month to run batch jobs. I want to setup alert if the timmertrigger is not triggered on this time and date. The function is triggered with cron expression and its triggering as expected, incase if it is not trigger we have to manually go and check if it is triggered from logs.
My first guess is to write custom log alerts based on requests
requests | where cloud_RoleName contains FUNCTION_APP_NAME_HERE
But i am not sure if i can scan the logs on this given time and date. We have already configured alerts if there is error on batch job once the timmertrigger is triggered.
Any suggestion would be welcome.
