Microsoft.AspNetCore.Diagnostics.Middleware 9.6.0

Prefix Reserved
dotnet add package Microsoft.AspNetCore.Diagnostics.Middleware --version 9.6.0
                    
NuGet\Install-Package Microsoft.AspNetCore.Diagnostics.Middleware -Version 9.6.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.Middleware" Version="9.6.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.Diagnostics.Middleware" Version="9.6.0" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.Middleware" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.AspNetCore.Diagnostics.Middleware --version 9.6.0
                    
#r "nuget: Microsoft.AspNetCore.Diagnostics.Middleware, 9.6.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Microsoft.AspNetCore.Diagnostics.Middleware&version=9.6.0
                    
Install Microsoft.AspNetCore.Diagnostics.Middleware as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Diagnostics.Middleware&version=9.6.0
                    
Install Microsoft.AspNetCore.Diagnostics.Middleware as a Cake Tool

Microsoft.AspNetCore.Diagnostics.Middleware

HTTP request diagnostics middleware for tracking latency and enriching and redacting log output.

Install the package

From the command-line:

dotnet add package Microsoft.AspNetCore.Diagnostics.Middleware

Or directly in the C# project file:

<ItemGroup>
  <PackageReference Include="Microsoft.AspNetCore.Diagnostics.Middleware" Version="[CURRENTVERSION]" />
</ItemGroup>

Usage Example

Log Buffering

Provides a buffering mechanism for logs, allowing you to store logs in temporary circular buffers in memory. If the buffer is full, the oldest logs will be dropped. If you want to emit the buffered logs, you can call Flush() on the buffer. That way, if you don't flush buffers, all buffered logs will eventually be dropped and that makes sense - if you don't flush buffers, chances are those logs are not important. At the same time, you can trigger a flush on the buffer when certain conditions are met, such as when an exception occurs.

Per-request Buffering

Provides HTTP request-scoped buffering for web applications:

// Simple configuration with log level
builder.Logging.AddPerIncomingRequestBuffer(LogLevel.Warning); // Buffer Warning and lower level logs per request

// Configuration using options
builder.Logging.AddPerIncomingRequestBuffer(options =>
{
    options.Rules.Add(new LogBufferingFilterRule(logLevel: LogLevel.Information)); // Buffer Information and lower level logs
    options.Rules.Add(new LogBufferingFilterRule(categoryName: "Microsoft.*")); // Buffer logs from Microsoft namespaces
});

// Configuration using IConfiguration
builder.Logging.AddPerIncomingRequestBuffer(configuration.GetSection("Logging:RequestBuffering"));

Then, to flush the buffers when a bad thing happens, call the Flush() method on the injected PerRequestLogBuffer instance:

public class MyService
{
    private readonly PerRequestLogBuffer _perRequestLogBuffer;

    public MyService(PerRequestLogBuffer perRequestLogBuffer)
    {
        _perRequestLogBuffer = perRequestLogBuffer;
    }

    public void DoSomething()
    {
        try
        {    
            // ...
        }
        catch (Exception ex)
        {
            // Flush all buffers
            _perRequestLogBuffer.Flush();
        }
    }
}

Per-request buffering is especially useful for capturing all logs related to a specific HTTP request and making decisions about them collectively based on request outcomes. Per-request buffering is tightly coupled with Global Buffering. If a log entry is supposed to be buffered to a per-request buffer, but there is no active HTTP context, it will be buffered to the global buffer instead. If buffer flush is triggered, the per-request buffer will be flushed first, followed by the global buffer.

Tracking HTTP Request Latency

These components enable tracking and reporting the latency of HTTP request processing.

The services can be registered using the following methods:

public static IServiceCollection AddRequestCheckpoint(this IServiceCollection services)
public static IServiceCollection AddRequestLatencyTelemetry(this IServiceCollection services)
public static IServiceCollection AddRequestLatencyTelemetry(this IServiceCollection services, Action<RequestLatencyTelemetryOptions> configure)
public static IServiceCollection AddRequestLatencyTelemetry(this IServiceCollection services, IConfigurationSection section)

The middleware can be registered using the following methods:

public static IApplicationBuilder UseRequestCheckpoint(this IApplicationBuilder builder)
public static IApplicationBuilder UseRequestLatencyTelemetry(this IApplicationBuilder builder)

For example:

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddRequestLatencyTelemetry();
builder.Services.AddRequestCheckpoint(options => { });

var app = builder.Build();

app.UseRequestCheckpoint();
app.UseRequestLatencyTelemetry();

HTTP Request Logs Enrichment and Redaction

These components enable enriching and redacting ASP.NET Core's HTTP request logs.

These APIs are only available for ASP.NET Core 8+.

The services can be registered using the following methods:

public static IServiceCollection AddHttpLoggingRedaction(this IServiceCollection services, Action<HeaderParsingOptions>? configure = null)
public static IServiceCollection AddHttpLoggingRedaction(this IServiceCollection services, IConfigurationSection section)
public static IServiceCollection AddHttpLogEnricher<T>(this IServiceCollection services)

The middleware can be registered using the following method:

public static IApplicationBuilder UseHttpLogging(this IApplicationBuilder builder)

For example:

var builder = WebApplication.CreateBuilder(args);

// General logging options
builder.Services.AddHttpLogging(options => { });
// Redaction options
builder.Services.AddHttpLoggingRedaction(options => { });

var app = builder.Build();

app.UseHttpLogging();

Feedback & Contributing

We welcome feedback and contributions in our GitHub repo.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Microsoft.AspNetCore.Diagnostics.Middleware:

Package Downloads
WC.Library.Web

Package Description

BBT.Prism.AspNetCore

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.6.0 369 6/10/2025
9.5.0 1,792 5/13/2025
9.4.0 2,862 4/8/2025
9.3.0 387 3/11/2025
9.2.0 27,152 2/11/2025
9.1.0 15,248 1/14/2025
9.0.0 2,365 11/12/2024
9.0.0-preview.9.24507.7 113 10/8/2024
9.0.0-preview.8.24460.1 83 9/10/2024
9.0.0-preview.7.24412.10 88 8/14/2024
9.0.0-preview.6.24353.1 86 7/10/2024
9.0.0-preview.5.24311.7 101 6/11/2024
9.0.0-preview.4.24271.2 95 5/21/2024
9.0.0-preview.3.24209.3 110 4/11/2024
9.0.0-preview.2.24157.4 93 3/12/2024
9.0.0-preview.1.24108.1 119 2/13/2024
8.10.0 27,089 10/8/2024
8.9.1 16,367 9/6/2024
8.9.0 4,375 9/5/2024
8.8.0 10,900 8/13/2024
8.7.0 7,316 7/10/2024
8.6.0 3,974 6/11/2024
8.5.0 13,256 5/14/2024
8.4.0 11,448 4/9/2024
8.3.0 1,235 3/12/2024
8.2.0 1,411 2/13/2024
8.1.0 1,836 1/9/2024
8.0.0 2,238 11/14/2023