繁体   English   中英

AppInsights 仅保存遥测数据,但不使用托管在 IIS 上的 .Net Core web 应用程序保存日志

[英]AppInsights is only saving telemetry data but not saving logs with a .Net Core web app hosted on an IIS

我的Program class 看起来像这样

public class Program
{
    public static void Main(string[] args)
    {
        CreateWebHostBuilder(args)
            .Build()
            .Run();
    }

    public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
        .ConfigureAppConfiguration((webHostingBuilder, configBuilder) =>
            {
                configBuilder.SetBasePath(webHostingBuilder.HostingEnvironment.ContentRootPath)
                                .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
                                .AddJsonFile($"appsettings.{webHostingBuilder.HostingEnvironment.EnvironmentName}.json", optional: true, reloadOnChange: true)
                                .AddEnvironmentVariables();
            })
        .ConfigureLogging((webHostingBuilder, logging) =>
        {
            logging.ClearProviders();
            logging.AddConsole();
            logging.AddDebug();
            logging.AddApplicationInsights(
                webHostingBuilder.Configuration.GetValue<string>("Logging:ApplicationInsights:InstrumentationKey"));
        })
        .UseStartup<Startup>();
}

在我的ConfigureServicesStartup

services.AddApplicationInsightsTelemetry(configuration["Logging:ApplicationInsights:InstrumentationKey"]);

这是我的 controller class:

public class AccountController : BaseController
{
    private ILogger _logger;

    public AccountController(ILogger<AccountController> logger)
    {   ... } 

    [HttpGet]
    public async Task<IActionResult> Login(string returnUrl)
    {
        _logger.LogError("SuperError");
    }
}

为了保存日志,我还需要配置其他什么吗? 在做我的例子时,我在这里看不到任何东西

在此处输入图像描述

你的代码看起来不错。 有时,日志可能需要一段时间才能显示在App Insights中。 给出正确InstrumentationKey的示例配置:

https://docs.microsoft.com/en-us/azure/azure-monitor/app/ilogger#im-using-the-standalone-package-microsoftextensionsloggingapplicationinsights-and-enabling-application-insights-provider-by-calling- builderaddapplicationinsightsikey-is-there-an-option-to-get-an-instrumentation-key-from-configuration

启动.cs

services.AddApplicationInsightsTelemetry();

appsettings.json

"ApplicationInsights": {
  "InstrumentationKey": "putinstrumentationkeyhere"
}

WeatherForecastController.cs

private readonly ILogger<WeatherForecastController> _logger;

public WeatherForecastController(ILogger<WeatherForecastController> logger)
{
    _logger = logger;
}

[HttpGet]
public ActionResult<IEnumerable<WeatherForecast>> Get()
{
    _logger.LogInformation("WeatherForecastController Get");

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM