ASP.NET Core
For ASP.NET Core, once you reference theElastic.Apm.NetCoreAll package, you can enable auto instrumentation by calling theAddAllElasticApm() extension method on theIServiceCollection in theProgram.cs file.
The following code sample assumes the instrumentation of a ASP.NET Core 8 application, usingtop-level statements.
var builder = WebApplication.CreateBuilder(args);builder.Services.AddAllElasticApm();var app = builder.Build();// Configure the HTTP request pipeline.app.Run();With this you enable every agent component including ASP.NET Core tracing, monitoring of outgoing HTTP request, Entity Framework Core database tracing, etc.
In case you only reference theElastic.Apm.AspNetCore package, you won’t find theAddAllElasticApm. Instead you need to use theAddElasticApmForAspNetCore() method. This method turns on ASP.NET Core tracing, and gives you the opportunity to manually turn on other components. By default it will only trace ASP.NET Core requests - No HTTP request tracing, database call tracing or any other tracing component will be turned on.
In case you would like to turn on specific tracing components you can pass those to theAddElasticApm method.
For example:
builder.Services.AddElasticApm(new HttpDiagnosticsSubscriber(), /* Enable tracing of outgoing HTTP requests */new EfCoreDiagnosticsSubscriber()); /* Enable tracing of database calls through EF Core*/In case you only want to use thePublic API, you don’t need to do any initialization, you can simply start using the API and the agent will send the data to the APM Server.