我正在使用Microsoft.ApplicationInsights.AspNetCore(https://www.nuget.org/packages/Microsoft.ApplicationInsights.AspNetCore)。
我通过在Programs.cs和启动类中添加.UseApplicationInsights()来启用应用程序见解:
loggerFactory.AddApplicationInsights(app.ApplicationServices);
这一切都很好,我能够在应用程序见解中看到请求,但是当我尝试记录错误时(例如在控制器中):
_logger.LogError("My Error Log");
_logger.LogError("Test", new Exception("Test"));
两者都记录为跟踪事件,而不是应用程序见解中的异常。
我如何使它记录为例外?
答案 0 :(得分:4)
如果您想在应用程序见解中将错误记录为“异常”,则应更改此行代码_logger.LogError("Test", new Exception("Test"));
。
将其更改为_logger.LogError(new Exception(), "test");
,这意味着new Exception()
应该是第一个参数。
然后您可以通过右键单击您的项目->添加-> Application Insights Telemetry添加Application Insights SDK,这对于自动执行某些操作(即添加.UseApplicationInsights() in Programs.cs
)非常有用:
我还发布了测试步骤:
1。如上所述添加应用程序见解SDK
2。在Startup.cs-> Configure()方法中添加loggerFactory.AddApplicationInsights(app.ApplicationServices,LogLevel.Information);
,代码如下:
public void Configure(IApplicationBuilder app, IHostingEnvironment env,ILoggerFactory loggerFactory)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Error");
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseMvc();
//Add this line of code
loggerFactory.AddApplicationInsights(app.ApplicationServices,LogLevel.Information);
}
3。然后在您要记录错误的地方:
public class AboutModel : PageModel
{
private ILogger _logger;
public AboutModel(ILogger<AboutModel> logger)
{
_logger = logger;
}
public string Message { get; set; }
public void OnGet()
{
_logger.LogInformation("it is just a test herexxxx");
//Only this format can log as exception
_logger.LogError(new Exception(), "it is a new Exceptionxxxx");
//it will log as trace
_logger.LogError("error logs xxx");
Message = "Your application description page.";
}
}
答案 1 :(得分:0)
由于Microsoft.ApplicationInsights.AspNet v2.7
的问题和已接受的答案已经过时,因为在AddApplicationInsights
上调用ILoggerFactory
已经过时了。
文档要点:
ApplicationInsightsLoggerProvider
默认为启用。appsettings.json
中进行配置(如果您确实需要,也可以通过编程方式进行配置) "Logging": {
"LogLevel": {
"Default": "Warning"
},
"ApplicationInsights": {
"LogLevel": {
"Default": "Error"
}
}
}
答案 2 :(得分:0)
OP 说:
<块引用>两者都记录为跟踪事件,而不是应用洞察中的异常。
我正在与 Serilog 和 ASP.NET Core 3.1 的配置中的这个特定问题作斗争,遵循最新的建议,包括上面 Alex Klaus 的建议。
我的解决方案是在这条评论中:https://stackoverflow.com/a/64893138。具体来说,我在 Serilog 部分没有检测密钥。使用 Application Insights 和 Serilog 部分中的检测键,异常开始在 Azure Application Insights 中显示为异常。