How to deal with excessive logging from storage blob/queue triggers in Azure Functions? #12503
Replies: 4 comments 3 replies
|
cc Fabio Cavalcante (@fabiocav) Matthew Henderson (@mattchenderson) James Newton-King (@JamesNK) |
|
I think the solution is configuration in the client to not send all telemetry to the dashboard. Either disable sending certain kinds of telemetry, or sample it. |
|
I ran into a similar issue. The Azure Functions template has the host.json which contains logging settings, but that does not control the process worker log levels.
I added an appsettings.*.json file with the desired log levels to my Functions project and that calmed my logging down. I'm not sure if this is the long term solution, but it works for me for now. |
|
I ran into a similar issue with |

I ran into a similar issue. The Azure Functions template has the host.json which contains logging settings, but that does not control the process worker log levels.
https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide?tabs=ihostapplicationbuilder%2Cwindows#managing-log-levels
…