You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since there is no Discussions enabled for the project let me ask couple of questions in form of an issue:
immediate Client.Flush() is used for Info messages and page count metric from what I can see in your code. It could be Ok for handling exceptions, but I doubt it's a good idea for all Info events and page counts. It's not configurable either. AFAIK Ms recommendation is to let automatic flush work for most of the cases, that flushes collected telemetry data to remote server like once every 30 sec: https://devblogs.microsoft.com/premier-developer/application-insights-use-case-for-telemetryclient-flush-calls/
Could you explain why and if you have any plans to change the behavior.
Since there is no Discussions enabled for the project let me ask couple of questions in form of an issue:
Client.Flush()
is used for Info messages and page count metric from what I can see in your code. It could be Ok for handling exceptions, but I doubt it's a good idea for all Info events and page counts. It's not configurable either. AFAIK Ms recommendation is to let automatic flush work for most of the cases, that flushes collected telemetry data to remote server like once every 30 sec:https://devblogs.microsoft.com/premier-developer/application-insights-use-case-for-telemetryclient-flush-calls/
Could you explain why and if you have any plans to change the behavior.
sync Client.Flush();
inside itslef, while Client.FlushAsync() is available. Any comment on that?Thank you!
The text was updated successfully, but these errors were encountered: