A look at the Kudu Azure WebJobs API https://github.com/projectkudu/kudu/wiki/WebJobs-API I see that there are several calls that I can make to control WebJobs programmatically.
There is no call to get information about one call for a continuous webjob. With a call, I mean a one-time execution of a function for a given message.
What I am trying to do is for a message falling into the poison queue to receive a parent call exception message. In a poisonous message, I get the parent call id using json prop $ AzureWebJobsParentId.
I would like to manage the poison queue using a function that sends messages about the details of the error and moves the message to the dead letter queue.
Any idea if this is possible?
source
share