VOOZH about

URL: https://www.nuget.org/packages/AWS.Messaging.Telemetry.OpenTelemetry/

⇱ NuGet Gallery | AWS.Messaging.Telemetry.OpenTelemetry 1.0.0




👁 Image
AWS.Messaging.Telemetry.OpenTelemetry 1.0.0

Prefix Reserved
dotnet add package AWS.Messaging.Telemetry.OpenTelemetry --version 1.0.0
 
 
NuGet\Install-Package AWS.Messaging.Telemetry.OpenTelemetry -Version 1.0.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="AWS.Messaging.Telemetry.OpenTelemetry" Version="1.0.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AWS.Messaging.Telemetry.OpenTelemetry" Version="1.0.0" />
 
Directory.Packages.props
<PackageReference Include="AWS.Messaging.Telemetry.OpenTelemetry" />
 
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 AWS.Messaging.Telemetry.OpenTelemetry --version 1.0.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AWS.Messaging.Telemetry.OpenTelemetry, 1.0.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 AWS.Messaging.Telemetry.OpenTelemetry@1.0.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=AWS.Messaging.Telemetry.OpenTelemetry&version=1.0.0
 
Install as a Cake Addin
#tool nuget:?package=AWS.Messaging.Telemetry.OpenTelemetry&version=1.0.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

OpenTelemetry plugin for AWS Message Processing Framework for .NET

👁 nuget
👁 downloads

This package is an Instrumentation Library, which instruments the AWS Message Processing Framework for .NET to collect traces about messages that are sent and received.

Configuration

1. Install Packages

Add a reference to AWS.Messaging.Telemetry.OpenTelemetry. In this example, we're going to configure OpenTelemetry on our IServiceCollection, so also add a reference to OpenTelemetry.Extensions.Hosting. This is not required if starting and stopping tracing via CreateTracerProviderBuilder.

You may also add a reference to one or more exporters to visualize your telemetry data.

dotnet add package AWS.Messaging.Telemetry.OpenTelemetry
dotnet add package OpenTelemetry.Extensions.Hosting

2. Enable Instrumentation

In the Startup class add a call to AddOpenTelemetry to configure OpenTelemetry. On the TracerProviderBuilder, call AddAWSMessagingInstrumentation to begin capturing traces for the AWS Message Processing Framework for .NET.

public class Startup
{
 public void ConfigureServices(IServiceCollection services)
 {
 services.AddAWSMessageBus(builder =>
 {
 builder.AddSQSPoller("https://sqs.us-west-2.amazonaws.com/012345678910/MPF");
 builder.AddMessageHandler<ChatMessageHandler, ChatMessage>("chatMessage");
 });

 services.AddOpenTelemetry()
 .ConfigureResource(resource => resource.AddService("myApplication"))
 .WithTracing(tracing => tracing
 .AddAWSMessagingInstrumentation()
 .AddConsoleExporter());
 }
}

AWS X-Ray Linked Spans Configuration

  1. If you are using OTEL with X-Ray, make sure you configure your OTEL setup to use OTLP for Cloudwatch. This is needed in order to view linked spans in the AWS X-Ray console. https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-OTLPSimplesetup.html

Useful Links

Security

See for more information.

License

This project is licensed under the Apache-2.0 License.

Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on AWS.Messaging.Telemetry.OpenTelemetry:

Package Downloads
APF.Core.Clean.Aws

Package Description

APF.Core.OpenTelemetry

This client library enables OpenTelemetry implementation in the APF services.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 165,279 7/29/2025
0.23.0 102,246 6/3/2025
0.22.0 8,749 5/5/2025
0.21.0 508 4/28/2025
0.20.0-preview 227 4/1/2025
0.9.2 36,838 2/20/2025
0.9.1 27,043 4/22/2024
0.9.0 8,220 3/26/2024
0.1.1-beta 183 3/20/2024
0.1.0-beta 405 12/8/2023