Azure Functions not showing all executions under Monitoring
After lodging a support ticket with Microsoft, it seems that you also need to explicitly disable sampling in your hosts.json file for the Function App. The logging snippet below needs to be added to your hosts.json file prior to deployment. After adding this and re-deploying, all executions of this function have appeared.
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": false
}
}
}
} Simon Holman
.NET and Azure Developer
I write about .NET, Azure, and cloud development. Follow along for tips, tutorials, and best practices.
Related Posts
SendGrid Account Setup and Domain Verification with Azure DNS
If you're wanting to send email from your application, then Sendgrid is a fantastic provider that makes it easy (and potentially free) to get up and going.
Host your domain with Azure Public DNS zones
Learn how to manage DNS for your domains with Azure Public DNS zones. Build on top of Azure's services for seamless integration.
Importing a CSV file into Azure SQL with Azure Functions
Importing CSV files into Azure SQL is quick and easy using Azure Functions.