Rajkumar Rangaraj

Results 54 comments of Rajkumar Rangaraj
trafficstars

Could you please let us which method you want to see on Geneva Log Exporter in DI?

@Stardox , SDK and Server configuration looks fine. Could you please execute the following query and check if data is sampled. ``` union requests,dependencies,pageViews,browserTimings,exceptions,traces | where timestamp > ago(1d) |...

@Stardox , If `RetainedPercentage` is not equal to 100 in any of the row, then we consider data as sampled. This could also happen if multiple app logging to the...

> In this second page (https://docs.microsoft.com/en-us/azure/azure-monitor/app/asp-net-core#enable-client-side-telemetry-for-web-applications) the Microsoft.ApplicationInsights.AspNetCore.JavaScriptSnippet package is introduced. This is applicable only for ASP.NET Core based web applications. We simplified the process of integrating JavaScript SDK with...

@rnarayana, I started investigating this issue, but could not recreate in my environment. Adding the code as in issue description did not recreate an issue. I see a note stating...

@rnarayana Thanks for the repro, it helped investigate an issue. Workaround for this issue is to set `EnableActiveTelemetryConfigurationSetup` to true in `ApplicationInsightsServiceOptions`. For example, ```csharp services.AddApplicationInsightsTelemetry(o => { o.InstrumentationKey =...

Today, even I was exploring about symbolic link. If we get this working we could reduce our package size by and solve issues for all architecture.

The `WEBSITE_SITE_NAME` environment variable is a read-only field and does get updated correctly during a slot swap. This means that when swapping between two slots, such as from staging to...

Could you explain how this will be handled ``` using var openTelemetry = OpenTelemetrySdk.Create(builder => builder .ConfigureResource(r => r.AddService("MyService")) .AddOtlpExporter() // (Future thing) .WithTracing(builder => builder.AddOtlpExporter(otlpOptions => {})); ```

A few customers might do something like the following and expect ASP.NET Core telemetries to be collected. However, since these APIs create their own tracer provider, customers may not see...