question

SowmiyaVeerappan-8312 avatar image
0 Votes"
SowmiyaVeerappan-8312 asked SowmiyaVeerappan-8312 edited

Application Insignts not adding events properly

         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






azure-monitor
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

0 Answers