I wanted to populate a value for correlationId to my applicationInsights . Right now the value is null. I have installed the serilog.enrichers.correlationId nuget package and have services.AddHTTPContextAccessor in my startup.cs file, but still the value of correlationId is null. Am i Missing something?Any suggestions? I got the source from :- https://github.com/ekmsystems/serilog-enrichers-correlation-id
Log.Logger = new LoggerConfiguration()
.ReadFrom.Configuration(Configuration)
.CreateLogger();
the above is my logger configuration in startup.cs. all the other enrichers that i defined in Enrich tag in appsettings.json are being populated but the correlation id is null.