I have a Node.js Azure Function and I’ve setup Sentry following the example for AWS Lambda (https://docs.sentry.io/platforms/node/serverless/#aws-lambda)
The thing is that it doesn’t seem to work well with Azure Functions. I get breadcrumbs from previous executions instead of only the ones generated by that particular execution.
I have another Azure Function on Python and I could make it work by using the @serverless decorator.
How can I make it work well on Azure Functions? Is there any way to force a cleanup of the previous breadcrumbs at the beginning?
Thanks