This is a sample ASP.NET Core web app with RuntimeIQ integrated.

RuntimeIQ is a self-hosted APM NuGet package for ASP.NET Core. It captures exceptions, slow SQL queries, and API latency, and serves a built-in diagnostics dashboard directly from inside this app. Two lines of code is all it takes:

using RuntimeIQ.Core.Extensions;

// 1. Register in Program.cs
builder.Services.AddRuntimeIQ();

// 2. Add to the pipeline
app.UseRuntimeIQ();
Open RuntimeIQ Dashboard

or open /runtimeiq in your browser