An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
Hi Sonal
Worth checking your function app's host.json. The function app might have sampling turned on that will not log every single request in the app insight. Additionally, the app insight might also decide to do the sampling if there are excessive logs from the app.
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
}
}