![]() |
VOOZH | about |
dotnet add package Raycynix.Extensions.Tracing --version 1.0.1
NuGet\Install-Package Raycynix.Extensions.Tracing -Version 1.0.1
<PackageReference Include="Raycynix.Extensions.Tracing" Version="1.0.1" />
<PackageVersion Include="Raycynix.Extensions.Tracing" Version="1.0.1" />Directory.Packages.props
<PackageReference Include="Raycynix.Extensions.Tracing" />Project file
paket add Raycynix.Extensions.Tracing --version 1.0.1
#r "nuget: Raycynix.Extensions.Tracing, 1.0.1"
#:package Raycynix.Extensions.Tracing@1.0.1
#addin nuget:?package=Raycynix.Extensions.Tracing&version=1.0.1Install as a Cake Addin
#tool nuget:?package=Raycynix.Extensions.Tracing&version=1.0.1Install as a Cake Tool
Raycynix.Extensions.Tracing contains the core tracing services for Raycynix applications.
AddRaycynixTracing(...)ITracer registrationTracer implementation built on ActivitySourceIApplicationBuilder extensionsbuilder.Services.AddRaycynixTracing();
public sealed class OrderService(ITracer tracer)
{
public void Process(string orderId)
{
using var activity = tracer.StartTrace("orders.process", new Dictionary<string, string>
{
["order.id"] = orderId
});
tracer.SetBaggage("tenant", "alpha");
tracer.AddTag("operation.type", "command");
}
}
For ASP.NET Core middleware integration, use Raycynix.Extensions.Tracing.AspNetCore.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 2 NuGet packages that depend on Raycynix.Extensions.Tracing:
| Package | Downloads |
|---|---|
|
Raycynix.Extensions.Tracing.AspNetCore
ASP.NET Core middleware integration for Raycynix tracing, request-level trace enrichment, and distributed correlation propagation. |
|
|
Raycynix.Extensions.Observability
Core observability composition for Raycynix applications, combining logging, metrics, tracing, and ambient operation context registration into a single infrastructure surface. |
This package is not used by any popular GitHub repositories.
See the package-local CHANGELOG.md for the full change history. Override PackageReleaseNotes in the package project file for major release-specific notes.