-
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Beta Was this translation helpful? Give feedback.
-
|
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. |
Beta Was this translation helpful? Give feedback.
-
|
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. |
Beta Was this translation helpful? Give feedback.
-
|
I ran into a similar issue with |
Beta Was this translation helpful? Give feedback.

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
…