appinsights

Is there a way to log the values from the Data dictionary of an exception in .net core ILogger interface?

一世执手 提交于 2020-06-28 05:38:06
问题 If I log an exception with some key/value pairs added to Data, those values do not get logged. They would be really helpful for diagnosis of the issue in some cases but I can't see any way to configure that. For example, the following console app: <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp3.1</TargetFramework> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.2" />

client_Browser field is always empty in App Insights

生来就可爱ヽ(ⅴ<●) 提交于 2020-06-17 01:52:24
问题 For all requests in App Insights the property client_Browser is empty for some reason. How can I make App insights populate client_Browser column? 回答1: This feature(client_os, client_browser are populated in app insights) has been deprecated for a long time, see the issue here. As of now, client_Browser is only populated in the pageViews telemetry , but not in request telemetry . Here is the screenshot of pageViews telemetry : If you just want to query the requests based on which browser, you

client_Browser field is always empty in App Insights

五迷三道 提交于 2020-06-17 01:48:13
问题 For all requests in App Insights the property client_Browser is empty for some reason. How can I make App insights populate client_Browser column? 回答1: This feature(client_os, client_browser are populated in app insights) has been deprecated for a long time, see the issue here. As of now, client_Browser is only populated in the pageViews telemetry , but not in request telemetry . Here is the screenshot of pageViews telemetry : If you just want to query the requests based on which browser, you