SimpleRequestLogger 2.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package SimpleRequestLogger --version 2.0.2
NuGet\Install-Package SimpleRequestLogger -Version 2.0.2
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="SimpleRequestLogger" Version="2.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SimpleRequestLogger --version 2.0.2
#r "nuget: SimpleRequestLogger, 2.0.2"
#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.
// Install SimpleRequestLogger as a Cake Addin
#addin nuget:?package=SimpleRequestLogger&version=2.0.2

// Install SimpleRequestLogger as a Cake Tool
#tool nuget:?package=SimpleRequestLogger&version=2.0.2

SimpleRequestLogger

This package provides a small and customizable ASP.NET Core middleware for structured logging of requests using Microsoft.Extensions.Logging. The built-in request logging is a bit noisy and emits multiple events per request. With SimpleRequestLogger you can fit all the information you need in a single log entry:

// Plaintext
[21:51:46.5705 INFO] GET / responded 200 in 31 ms.

// JSON
{
    "Time": "21:51:46.5705",
    "Level": "INFO",
    "Message": "GET / responded 200 in 31 ms.",
    "Properties": {
        "Method": "GET",
        "Path": "/",
        "QueryString": "",
        "StatusCode": 200,
        "ElapsedMs": 31
    }
}

Installation

You can install the NuGet package via the NuGet Package Manager inside Visual Studio or via the console:

// Package Manager Console
Install-Package SimpleRequestLogger

// .NET Core CLI
dotnet add package SimpleRequestLogger

Usage

The only thing you should do is simply add the middleware to the request pipeline.

Default configuration

By default, SimpleRequestLogger logs all requests at information log level with message template "{Method} {Path}{QueryString} responded {StatusCode} in {ElapsedMs} ms.". To use the middleware you should only add a single line:

app.UseRequestLogging();

Custom configuration

It is possible to customize the message template, to change the log level based on status code and to disable logging for specific paths. SimpleRequestLogger uses Microsoft.Extensions.Configuration and would by default expect a section RequestLogging.

"RequestLogging": {
    "MessageTemplate": "{Scheme} {Method} {Path} => {StatusCode}",
    "IgnorePaths": [ "/health", "/static/*" ]
}

It is also possible to pass a custom configuration section:

app.UseRequestLogging("YourCustomSection:CustomSubsectionRequestLogging");

To change the log level based on status code, you should pass a delegate to the middleware:

app.UseRequestLogging(statusCode => (statusCode < 400) ? LogLevel.Information : LogLevel.Error);

You might as well have both custom configuration section and a log level selector.

app.UseRequestLogging("YourCustomSection:CustomSubsectionRequestLoging", 
    statusCode => (statusCode < 400) ? LogLevel.Information : LogLevel.Error);
Properties
  • Method
  • Path
  • QueryString
  • Header* - A Pascal case field name will be transformed to Kebab case. Example: HeaderFooBar ⇒ foo-bar
  • Protocol
  • Scheme
  • RemoteIpAddress - If you log this property you might want to consider adding UseForwardedHeaders() to your pipeline.
  • Claim* - A Pascal case claim type will be transformed to Kebab case. Example: ClaimFooBar ⇒ foo-bar
  • StatusCode
  • ElapsedMs

Pipeline placement

You might want to consider placing SimpleRequestLogger after request-heavy middleware like UseStaticFiles() if those requests are not interesting for you (alternatively, you might ignore those via the configuration).

If SimpleRequestLogger catches an exception, the request will be logged with a status code 500 and the exception will be rethrown. If you have an error handling middleware that alters the response status code based on exception type, you should consider adding SimpleRequestLogger before it.

Exceptions

In normal circumstances, SimpleRequestLogger should not throw exceptions when handling requests.

On startup, when the middleware is instantiated, the configuration is verified. MessageTemplate and IgnorePaths are checked for validity. Additionally, it is also ensured that the log level selector delegate will not throw for the standard response status codes. In case of a problem with the configuration, an InvalidOperationException is thrown.

Performance

SimpleRequestLogger adds a negligible performance overhead to every request.

Benchmarks

The scenarios are run on a test host without other middleware.

Method Mean Error StdDev Gen 0 Allocated
NoSimpleRequestLogger 12.15 μs 0.235 μs 0.231 μs 2.3804 7 KB
DefaultConfig 15.08 μs 0.298 μs 0.522 μs 2.5024 8 KB
CustomConfigOneIgnoredPath 17.59 μs 0.342 μs 0.336 μs 2.5024 8 KB
CustomConfigFiveIgnoredPaths 21.35 μs 0.426 μs 0.650 μs 2.5024 8 KB

Support

If you spot any problems and/or have improvement ideas, please share them via the issue tracker.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.2.3 496 4/14/2023
3.2.2 428 2/16/2023
3.2.1 215 2/14/2023
3.2.0 274 2/6/2023
3.1.1 466 1/2/2023
3.1.0 340 11/26/2022
3.0.0 316 11/18/2022
2.0.3 416 9/25/2022
2.0.2 406 8/27/2022
2.0.1 557 4/19/2022
2.0.0 389 4/7/2022
1.1.4 401 3/13/2022
1.1.3 386 3/8/2022
1.1.2 392 2/24/2022
1.1.1 385 2/23/2022
1.1.0 382 2/22/2022
1.0.0 221 1/12/2022