Troubleshoot App Insight displaying only some logs

523 Views Asked by At

I need to see the logs of a .Net application that runs in Azure App Service.

I see many logs in the application source code that I expect to see in Application Insights, but, going to Application Insights > Transaction search (All data last 24 hours) I see only a spike in the exact hour I deployed the application.

The only logs that I see in Application Insights are some traces from Program.cs and the other log in the application's controller and services are not visible.

Here is some minimum code to show what concerns the log configuration in the application and the use of the log in it:

public static void Main(string[] args)
{
   var builder = WebApplication.CreateBuilder(args);
   builder.WebHost
       .UseContentRoot(Directory.GetCurrentDirectory())
       .UseIISIntegration()
       .UseNLog();
   ...                                                   // other stuff
   app.Logger.LogInformation("Starting application..."); // Log that I see...
}

A controller example..

public class ProductsController : ControllerBase
{
   private readonly ILogger<ProductsController> _logger;
   public ProductsController(..., ILogger<ProductsController> logger)
   {
      ... = ...;
      _logger = logger;
   }
   [HttpGet("GuideProducts")]
   public async Task<IActionResult> GetGuideProductDesplayAsync(CancellationToken ct = default)
   {
      _logger.LogInformation("Executing ...."); // Log I DON'T see
      ...
   }
}

I see only the logs from the initial configuration and not during the application usage, I'm running out of ideas on how to troubleshoot this apparently dumb issue.

1

There are 1 best solutions below

0
On

Check the below steps to get the Logs from Controller in Application Insights.

My Program.cs

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddControllers();
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
builder.Services.AddApplicationInsightsTelemetry(builder.Configuration["APPLICATIONINSIGHTS_CONNECTION_STRING"]);

var app = builder.Build();
app.Logger.LogInformation("Log from Program.cs");

if (app.Environment.IsDevelopment())
{
    app.UseSwagger();
    app.UseSwaggerUI();
}

app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();

My Controller.cs :


        [HttpGet(Name = "GetWeatherForecast")]
        public IEnumerable<WeatherForecast> Get()
        {
            _logger.LogInformation("Log Information - Controller.");
            _logger.LogDebug("Debug Log - Controller.");
            _logger.LogWarning("Log Warning - Controller.");
            _logger.LogError("Log Error.");
            return Enumerable.Range(1, 5).Select(index => new WeatherForecast
            {
                Date = DateTime.Now.AddDays(index),
                TemperatureC = Random.Shared.Next(-20, 55),
                Summary = Summaries[Random.Shared.Next(Summaries.Length)]
            })
            .ToArray();
        }
We need to add

We need to add Application Insights settings in appsettings.json file.

My appsettings.json

{
  "Logging": {
    "ApplicationInsights": {
      "LogLevel": {
        "Default": "Debug",
        "Microsoft": "Error"
      }
    },
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },

  "AllowedHosts": "*",
  "ApplicationInsights": {
    "ConnectionString": "Get the ApplicationInsights Connection String from Azure Portal - Access Keys"  
  }
}

Packages in my .csproj file

 <PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.15.0" />
 <PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />

Access the URL and execute the Controller Action method.

Traces in Application Insights Transaction Search

enter image description here