Crip.AspNetCore.Correlation
1.0.2
See the version list below for details.
dotnet add package Crip.AspNetCore.Correlation --version 1.0.2
NuGet\Install-Package Crip.AspNetCore.Correlation -Version 1.0.2
<PackageReference Include="Crip.AspNetCore.Correlation" Version="1.0.2" />
paket add Crip.AspNetCore.Correlation --version 1.0.2
#r "nuget: Crip.AspNetCore.Correlation, 1.0.2"
// Install Crip.AspNetCore.Correlation as a Cake Addin #addin nuget:?package=Crip.AspNetCore.Correlation&version=1.0.2 // Install Crip.AspNetCore.Correlation as a Cake Tool #tool nuget:?package=Crip.AspNetCore.Correlation&version=1.0.2
CRIP AspNetCore Correlation
The correlation ID is meant to be used to help Admin trace what was happening at the time of an error/request. It is only valuable as an interactive tool to help the Admin track down your error. An Admin uses the correlation ID as "breadcrumbs" to retrace a requests or processes in the Logging System to find what leads up to and causes a problem.
Installation
TODO: create NuGet package to be able install
Setup
Configure services:
services.AddHttpContextAccessor(); // package requires that HTTP context accessor is available
services.AddCorrelation();
Configure pipeline:
// Add middlewares as early as possible
app.UseCorrelation();
// or
app.UseMiddleware<CorrelationIdMiddleware>();
app.UseMiddleware<CorrelationIdLoggingMiddleware>();
HTTP client correlation
Correlation makes sense only when entire system is using same Correlation ID. To do so, you can use "traced" HTTP client witch will automatically add header to all outgoing requests.
services.AddTracedHttpClient<TClient, TImplementation>(((provider, client) =>
{
var config = provider.GetRequiredService<IOptions<TClientOptions>>().Value;
client.BaseAddress = new Uri(config.BaseUrl);
}));
Customization
You can customize correlation by providing custom options:
services.Configure<CorrelationIdOptions>(options =>
{
options.Cookie = "X-Correlation-Id"; // name of the cookie key to use as correlation identifier
options.Header = "X-Correlation-Id"; // name of the HTTP request/response header
options.PropertyName = "CorrelationId"; // name of the loggable property
options.IncludeInResponse = true; // include correlation identifier header in responses
});
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 was computed. |
.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.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Logging (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
-
net6.0
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Logging (>= 6.0.0)
- Microsoft.Extensions.Options (>= 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.