最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Application Insights displaying unwanted Entity Framework Core traces - Stack Overflow

programmeradmin1浏览0评论

I got an API configured with the latest version of Application Insights, like this:

services.AddApplicationInsightsTelemetry(o =>
{
    o.ConnectionString = string.Format("InstrumentationKey={0};", configuration.InstrumentationKey);
    o.RequestCollectionOptions.InjectResponseHeaders = true;
    o.EnableQuickPulseMetricStream = true;
    o.EnableAdaptiveSampling = false;     
    o.EnableDebugLogger =false;
});

I got the API configured with NLog and specifying that I only want to track error messages:

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns=".xsd"
      xmlns:xsi=";
      autoReload="true">
  <extensions>
    <add assembly="NLog.Web.AspNetCore"/>
    <add assembly="Microsoft.ApplicationInsights.NLogTarget" />
  </extensions>
  <targets>
    <target xsi:type="ApplicationInsightsTarget" name="aiTarget">
      <instrumentationKey>XXXXXXXXX</instrumentationKey>
      <contextproperty name="threadid" layout="${threadid}" />
    </target>
  </targets>
  <rules>
    <logger name="*" minlevel="Error" writeTo="aiTarget" />
  </rules>
</nlog>

And in the appsettings.json of the API I have:

"Logging": {
   "IncludeScopes": false,
   "LogLevel": {
     "Default": "Error",
     "System": "Error",
     "Microsoft": "Error"
   }
}

However in Application Insights, I get log trace messages from Entity Framework Core:

How can I stop these EF Core traces appearing there?

Thanks,
Juan Antonio

I got an API configured with the latest version of Application Insights, like this:

services.AddApplicationInsightsTelemetry(o =>
{
    o.ConnectionString = string.Format("InstrumentationKey={0};", configuration.InstrumentationKey);
    o.RequestCollectionOptions.InjectResponseHeaders = true;
    o.EnableQuickPulseMetricStream = true;
    o.EnableAdaptiveSampling = false;     
    o.EnableDebugLogger =false;
});

I got the API configured with NLog and specifying that I only want to track error messages:

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project./schemas/NLog.xsd"
      xmlns:xsi="http://www.w3./2001/XMLSchema-instance"
      autoReload="true">
  <extensions>
    <add assembly="NLog.Web.AspNetCore"/>
    <add assembly="Microsoft.ApplicationInsights.NLogTarget" />
  </extensions>
  <targets>
    <target xsi:type="ApplicationInsightsTarget" name="aiTarget">
      <instrumentationKey>XXXXXXXXX</instrumentationKey>
      <contextproperty name="threadid" layout="${threadid}" />
    </target>
  </targets>
  <rules>
    <logger name="*" minlevel="Error" writeTo="aiTarget" />
  </rules>
</nlog>

And in the appsettings.json of the API I have:

"Logging": {
   "IncludeScopes": false,
   "LogLevel": {
     "Default": "Error",
     "System": "Error",
     "Microsoft": "Error"
   }
}

However in Application Insights, I get log trace messages from Entity Framework Core:

How can I stop these EF Core traces appearing there?

Thanks,
Juan Antonio

Share Improve this question edited 2 days ago marc_s 756k184 gold badges1.4k silver badges1.5k bronze badges asked 2 days ago juan25djuan25d 3881 gold badge4 silver badges17 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

As far as I see from this image you have sensitive data logging enabled on your DbContext class. You just need to disable it. Configuring sensitive data logging normally happens in your Startup.cs class where you register your DbContext in the DI container using the DbContextOptionsBuilder class to configure it.

protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    => optionsBuilder
        .LogTo(Console.WriteLine)
        .EnableSensitiveDataLogging();

The configuration of your DbContext class in Startip.cs should look something like this:

services.AddDbContext<ApplicationDbContext>(options =>
    {
              options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"));
        options.EnableSensitiveDataLogging();
    });

Just remove the last line from the code block above i.e.

EnableSensitiveDataLogging()

and you should be good to go. More on EF Core sensitive data logging In short most likely your problem has nothing to do with Azure App Insights but with how you have configured your DbContext class.

发布评论

评论列表(0)

  1. 暂无评论