W4k.AspNetCore.Correlator
2.3.0
See the version list below for details.
dotnet add package W4k.AspNetCore.Correlator --version 2.3.0
NuGet\Install-Package W4k.AspNetCore.Correlator -Version 2.3.0
<PackageReference Include="W4k.AspNetCore.Correlator" Version="2.3.0" />
paket add W4k.AspNetCore.Correlator --version 2.3.0
#r "nuget: W4k.AspNetCore.Correlator, 2.3.0"
// Install W4k.AspNetCore.Correlator as a Cake Addin #addin nuget:?package=W4k.AspNetCore.Correlator&version=2.3.0 // Install W4k.AspNetCore.Correlator as a Cake Tool #tool nuget:?package=W4k.AspNetCore.Correlator&version=2.3.0
W4k.AspNetCore.Correlator
Correlator helps you with handling correlation ID (also "request ID"): reading, generating new one and forwarding to subsequent requests.
Correlation ID is sent within HTTP headers. If header is not set, Correlator will happily generate new one for you.
Apart of accepting or generating correlation ID, it is also possible to return correlation ID back to caller, so in case when correlation ID is generated, caller is aware of that value.
To forward correlation ID to subsequent request, it is necessary to use designated HTTP message handler, see examples below.
W3 Trace Context and .NET Core 3.x
Please be aware that Trace Context is not supported out of the box, Correlator helps you with simple non-standard headers.
Note that with .NET Core 3.x, distributed tracing and trace context is built in. You can get more insights from article: Improvements in .NET Core 3.0 for troubleshooting and monitoring distributed apps.
Basic usage
Startup class
public class MyLittleStartup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddDefaultCorrelator();
}
public void Configure(IApplicationBuilder app)
{
// register as first middleware
// (or as soon as possible to benefit from having correlation ID)
app.UseCorrelator();
app.UseMvc();
}
}
Accessing correlation ID
Correlation ID of current request is available via ICorrelationContextAccessor.CorrelationContext
:
using W4k.AspNetCore.Correlator;
using W4k.AspNetCore.Correlator.Context;
public class MyLittleService
{
private readonly ICorrelationContextAccessor _contextAccessor;
public MyLittleService(ICorrelationContextAccessor contextAccessor)
{
_contextAccessor = contextAccessor;
}
public async Task DoMagicalStuff()
{
CorrelationId correlationId = _contextAccessor.CorrelationContext.CorrelationId;
// ...
}
}
Forwarding correlation ID
In order to pass correlation ID to subsequent requests, additional HTTP message handler has to be registered.
Add CorrelatorHttpMessageHandler
to HTTP client's message handler pipeline like this:
public class MyLittleStartup
{
public void ConfigureServices(IServiceCollection services)
{
// named HTTP client
services
.AddHttpClient("DummyClient")
.WithCorrelation();
// typed HTTP client
services
.AddHttpClient<FooClient>()
.WithCorrelation();
// registering HTTP message handler manually
services
.AddHttpClient("FizzClient")
.AddHttpMessageHandler<CorrelatorHttpMessageHandler>();
// registering HTTP client with custom settings
// (global options - CorrelatorOptions.Forward - won't be used)
services
.AddHttpClient<LegacyClient>()
.WithCorrelation(PropagationSettings.PropagateAs("X-Legacy-Correlation-Id"));
}
// ...
}
See "Configure the HttpMessageHandler" for more details about usage of HTTP message handler.
Validation of correlation ID
It is possible to validate correlation ID value and prevent invalid value to spread. By default, validation is
turned off. In order to turn validation on, implementation of ICorrelationValidator
musth be registered.
Correlator is shipped with lightweight validator, CorrelationValueLengthValidator
, which decides whether received
value is valid simply based on its length.
public void ConfigureServices(IServiceCollection services)
{
services
.AddDefaultCorrelator()
.WithValidator(new CorrelationValueLengthValidator(64));
}
Documentation
- Detailed configuration description
- Dependency injection registration
- Components description
- Alternative packages and further reading
Icon made by Kiranshastry from Flaticon, www.flaticon.com
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.AspNetCore.Http (>= 2.1.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.1.0)
- Microsoft.Extensions.Http (>= 2.1.0)
- Microsoft.Extensions.Options (>= 2.1.0)
-
.NETStandard 2.1
- Microsoft.AspNetCore.Http (>= 2.2.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Http (>= 2.2.0)
- Microsoft.Extensions.Options (>= 2.2.0)
- Microsoft.Extensions.Options.DataAnnotations (>= 2.2.0)
-
net6.0
- Microsoft.AspNetCore.Http (>= 2.2.2)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
- Microsoft.Extensions.Options.DataAnnotations (>= 6.0.0)
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.0 | 416 | 1/15/2024 |
3.1.0 | 242 | 11/27/2023 |
3.0.0 | 117 | 11/18/2023 |
2.3.0 | 223 | 8/28/2023 |
2.2.2 | 1,814 | 7/25/2022 |
2.2.1 | 9,788 | 9/8/2020 |
2.2.0 | 454 | 9/6/2020 |
2.2.0-preview2 | 362 | 9/5/2020 |
2.2.0-preview1 | 358 | 9/4/2020 |
2.1.1 | 459 | 9/4/2020 |
2.0.1 | 447 | 8/31/2020 |
2.0.1-beta | 407 | 8/30/2020 |
2.0.0-beta | 290 | 8/27/2020 |
1.1.0 | 7,200 | 9/26/2019 |
1.0.1 | 1,992 | 6/27/2019 |
1.0.0 | 1,356 | 10/22/2018 |
0.2.0-alpha | 583 | 9/28/2018 |
0.1.0-alpha | 587 | 9/27/2018 |