I don't want any sampling and want to log all the data in requests, customEvents, traces
and exceptions
.
Will having the following host.json
ensure that all of the data logged via a telemetry object inside the Azure function is present consistently on the respective AppInsight instance?
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": false
}
}
}
}