BbQ.Outcome.Diagnostics 1.2.0-preview.2

This is a prerelease version of BbQ.Outcome.Diagnostics.
dotnet add package BbQ.Outcome.Diagnostics --version 1.2.0-preview.2
                    
NuGet\Install-Package BbQ.Outcome.Diagnostics -Version 1.2.0-preview.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="BbQ.Outcome.Diagnostics" Version="1.2.0-preview.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BbQ.Outcome.Diagnostics" Version="1.2.0-preview.2" />
                    
Directory.Packages.props
<PackageReference Include="BbQ.Outcome.Diagnostics" />
                    
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 BbQ.Outcome.Diagnostics --version 1.2.0-preview.2
                    
#r "nuget: BbQ.Outcome.Diagnostics, 1.2.0-preview.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.
#:package BbQ.Outcome.Diagnostics@1.2.0-preview.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BbQ.Outcome.Diagnostics&version=1.2.0-preview.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=BbQ.Outcome.Diagnostics&version=1.2.0-preview.2&prerelease
                    
Install as a Cake Tool

BbQ.Outcome.Diagnostics

Optional adapters over ILogger and System.Diagnostics.Activity. The core Outcome package does not depend on this package, logging, or any telemetry exporter.

Installation

This package ships with the Outcome family under the same outcome-v* version.

dotnet add package BbQ.Outcome.Diagnostics --prerelease
using BbQ.Outcome.Diagnostics;
using System.Diagnostics;

using var source = new ActivitySource("MyApplication.Orders"); // normally application-owned
var observer = new OutcomeObserver<AppError>(logger);
var result = await observer.TraceAsync(source, "CreateOrder",
    ct => CreateOrderAsync(command, ct), cancellationToken);

Observe annotates the current activity and returns the original outcome. TraceAsync starts and disposes a child activity only when a listener requests it, and observes that child rather than accidentally changing a parent when no child is created. The caller owns the ActivitySource. Configure OpenTelemetry or another listener/exporter in the application.

Success records outcome.success=true, zero errors, and Ok activity status. Domain failure records false, an error count, and Error status without throwing. Operation cancellation is tagged as cancellation and rethrown without assigning an error status. Unexpected exceptions are rethrown with a generic activity status description and a generic log entry; their exception object, message, and stack are not recorded by this adapter.

Structured logs contain the caller-supplied operation name, success flag, and error count. They never automatically contain success values, error descriptions, metadata, attempted values, or error codes. Use stable, non-sensitive operation names. Activity error codes are opt-in via OutcomeObservationOptions(IncludeErrorCodes: true) and require an explicit IErrorDescriptorProvider<TError>. Code count/length is bounded, but applications must still control cardinality and sensitivity.

There is no implicit retry, exception-to-error conversion, best-effort exception swallowing, or global instrumentation switch. As with Tap, exceptions from application-supplied loggers or descriptor providers remain visible. Heterogeneous outcomes are supported with OutcomeObserver<object?> and the extension overloads.

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 is compatible.  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

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
1.2.0-preview.2 41 9/13/2026
1.2.0-preview.1 55 9/13/2026