I have enabled snapshot debugging by adding this in the host.json file in the azure function and redeploying the function app:
{
"version": "2.0",
"logging": {
"applicationInsights": {
"snapshotConfiguration": {
"isEnabled": true
}
}
}
}
according the docs: https://docs.microsoft.com/da-dk/azure/azure-monitor/app/snapshot-debugger-function-app
However even though I can see the exception I generated and the end to end transaction, the button to see snapshot debug is not visible, even though I have waited 10 minutes for the debug snapshot to be created:

I have also tried adding the nuget package: Microsoft.ApplicationInsights.SnapshotCollector.
However it still does not work.
Can you advise how to fix this?