App Insights 日志中未找到 Microsoft 日志记录

问题描述 投票:0回答:1

我有一个 .net core 应用程序并配置了这样的应用程序见解

程序.cs:

return WebHost.CreateDefaultBuilder(args)
   .UseApplicationInsights()
   .ConfigureLogging(logging =>
   {
       logging.AddFilter<ApplicationInsightsLoggerProvider>("", LogLevel.Trace);
   })
   .UseStartup<Startup>();

启动:

services.AddApplicationInsightsTelemetry();
services.AddLogging();

appsettings.json:

"ApplicationInsights": {
    "InstrumentationKey": "my-key"
}

应用程序洞察已针对应用程序服务打开并接收数据,但显然不适用于日志记录

_logger?.LogInformation("important info!");

如果我用

查询,日志为空
traces
| sort by timestamp desc 

是否遗漏了任何明显的东西?

.net logging appinsights
1个回答
0
投票

在Program.cs中,少了一行:

logging.AddApplicationInsights();
© www.soinside.com 2019 - 2024. All rights reserved.