loggerFactory.AddApplicationInsights(app.ApplicationServices);
try
{
throw new Exception("This is a test exception for app insights.");
}
catch (Exception ex)
{
logger.LogError(ex, "Exception message",new Dictionary<string, string>() { {"Controller","Error" } });
throw;
}
我想用这个args记录错误,其中args是字典。我记录了错误,但是args没有在app洞察中尝试过。
应用程序洞察允许发送自定义对象,但是记录器有关于将其转发到AppInsights的问题。只是不转发。有什么想法吗?