We are targeting netcoreapp1.1 and have referenced nuget package Microsoft.ApplicationInsights.AspNetCore with version 2.1.0-beta1 (currently the newest).
In program.cs we have .UseApplicationInsights()
and in Startup.cs:ConfigureServices we have services.AddApplicationInsightsTelemetry(this.Configuration);
.
We've tried adding new DependencyTrackingTelemetryModule().Initialize(TelemetryConfiguration.Active);
but still don't see any dependency calls, like sql commands, in the Application Map nor in any other reports.
We are using Entity Framework Core 1.1.1.
In Visual Studio when I F5 I see all database calls in the Diagnostic Tools window under ADO.NET. I also see Application Insights calls but those seem to be launched only for page loads, not for any dependencies.
Is this even supported yet and if it is, how do I enable it?