TelemetryConfiguration.Active.InstrumentationKey = ***key******;
var builder = TelemetryConfiguration.Active.DefaultTelemetrySink.TelemetryProcessorChainBuilder;
builder.UseAdaptiveSampling(maxTelemetryItemsPerSecond: 200, includedTypes: "Dependency", excludedTypes: "Request;Exception;Trace");
builder.Use((next) => new SuccessfulDependencyFilter(next));
builder.Build();
This is our startup code. If we are calling the Same API twice at a time, It's logging only one request event in application insights. Some of the important events are missing. so, we can't able to check the Prod logs properly. Could you please help me out with this one asap?.
POST https://developementapi.test.com/api/Applications
Application Insights Versions =>Microsoft.ApplicationInsights - 2.8.1.0