Vion.Telemetry.Instrumentation 1.1.0

Prefix Reserved
dotnet add package Vion.Telemetry.Instrumentation --version 1.1.0
                    
NuGet\Install-Package Vion.Telemetry.Instrumentation -Version 1.1.0
                    
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="Vion.Telemetry.Instrumentation" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Vion.Telemetry.Instrumentation" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Vion.Telemetry.Instrumentation" />
                    
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 Vion.Telemetry.Instrumentation --version 1.1.0
                    
#r "nuget: Vion.Telemetry.Instrumentation, 1.1.0"
                    
#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 Vion.Telemetry.Instrumentation@1.1.0
                    
#: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=Vion.Telemetry.Instrumentation&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Vion.Telemetry.Instrumentation&version=1.1.0
                    
Install as a Cake Tool

Vion.Telemetry.Instrumentation

BCL-only span instrumentation for Vion applications: the Messaging ActivitySource, the Activity tag helpers, and consume/publish span factories with high-volume-topic suppression. It has no OpenTelemetry dependency, so code that only creates spans can reference it without pulling OpenTelemetry into its closure.

using Vion.Telemetry.Instrumentation;

// Producer side — span parented on the ambient Activity.Current:
using var activity = MessageActivities.StartMessagePublishActivity(topic);
// ... publish ...

// Consumer side — span parented on the propagated W3C traceparent:
using var activity = MessageActivities.StartMessageConsumeActivity(topic, traceParent)
// ... handle ...
activity?.MarkFailed(exception); // on error

High-volume topics are suppressed client-side — an excluded topic produces no span. The topicsToExclude argument is tri-state: null uses the default exclusions, an empty array excludes nothing (trace everything), and a populated array excludes exactly those topics. The tag helpers (SetMqttTopic, MarkFailed, SetServiceIdentifier, …) set the messaging tag names on a span.

Full documentation: https://docs.vion.swiss

Licensed under the Apache License 2.0.

Product Compatible and additional computed target framework versions.
.NET 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 (1)

Showing the top 1 NuGet packages that depend on Vion.Telemetry.Instrumentation:

Package Downloads
Vion.ServiceProvider.Sdk

SDK for building service providers that integrate with the Vion IoT platform. Handles MQTT connection, registration flow, setup schema exchange, message handler registration, and health reporting.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 0 6/20/2026
1.0.0 104 6/17/2026
0.3.0 515 6/3/2026
0.2.1 103 6/3/2026
0.2.0 136 6/2/2026