Skip to content
This repository was archived by the owner on Oct 16, 2023. It is now read-only.

felipepessoto/Fujiy.ApplicationInsights.AspNetCore.SqlTrack

Repository files navigation

Application Insights for ASP.NET Core doesn't support Dependency Tracking:

Dependency tracking and performance counter collection are by default enabled in ASP.NET Core on .NET Framework (currently not supported in .NET Core) https://github.com/Microsoft/ApplicationInsights-aspnetcore/wiki/Dependency-Tracking-and-Performance-Counter-Collection

So I created this library to automatically track your SQL queries and send to Application Insights.

Setup:

Add Fujiy.ApplicationInsights.AspNetCore.SqlTrack package

On your Configure method, add TelemetryClient parameter and add AiEfCoreLoggerProvider to ILoggerFactory:

    public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, TelemetryClient tc)
    {
        loggerFactory.AddProvider(new AiEfCoreLoggerProvider(tc));
        ...

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages