I have a situation where a blob might fail to process the first time but might work on a subsequent execution.
The issue I am having is around monitoring true failures, at the moment the first failure will throw an exception, which is logged and alerted on but if the first retry completed successfully then there is nothing to do based on the earlier alert.
Is there a way to view the number of retries that have happened, so that I can only alert if it is no longer going to be retried?
maxDequeueCountto 1.docs.microsoft.com/en-us/azure/azure-functions/…. - George Chen