![]() |
VOOZH | about |
dotnet add package OpenTelemetry.Instrumentation.AWS --version 1.15.1
NuGet\Install-Package OpenTelemetry.Instrumentation.AWS -Version 1.15.1
<PackageReference Include="OpenTelemetry.Instrumentation.AWS" Version="1.15.1" />
<PackageVersion Include="OpenTelemetry.Instrumentation.AWS" Version="1.15.1" />Directory.Packages.props
<PackageReference Include="OpenTelemetry.Instrumentation.AWS" />Project file
paket add OpenTelemetry.Instrumentation.AWS --version 1.15.1
#r "nuget: OpenTelemetry.Instrumentation.AWS, 1.15.1"
#:package OpenTelemetry.Instrumentation.AWS@1.15.1
#addin nuget:?package=OpenTelemetry.Instrumentation.AWS&version=1.15.1Install as a Cake Addin
#tool nuget:?package=OpenTelemetry.Instrumentation.AWS&version=1.15.1Install as a Cake Tool
| Status | |
|---|---|
| Stability | Stable |
| Code Owners | @srprash, @normj |
👁 NuGet version badge
👁 NuGet download count badge
👁 codecov.io
Download the OpenTelemetry.Instrumentation.AWS package:
dotnet add package OpenTelemetry.Instrumentation.AWS
Add the AWSXRayIdGenerator and AWSInstrumentation to your application. The below example is for an ASP.Net Core application.
using OpenTelemetry;
using OpenTelemetry.Contrib.Extensions.AWSXRay.Trace;
using OpenTelemetry.Trace;
public void ConfigureServices(IServiceCollection services)
{
services.AddControllers();
services.AddOpenTelemetryTracing((builder) => builder
// for tracing calls to AWS services via AWS SDK for .Net
.AddAWSInstrumentation()
.AddAspNetCoreInstrumentation()
.AddOtlpExporter());
}
For an overview on Semantic Conventions, see OpenTelemetry - Semantic Conventions.
While this library is intended for production use, it relies on several Semantic Conventions that are still considered Experimental, meaning they may undergo additional changes before becoming Stable. This can impact the aggregation and analysis of telemetry signals in environments with multiple applications or microservices.
For example, a microservice using an older version of the Semantic Conventions
for Http Attributes may emit "http.method" with a value of GET, while a
different microservice, using a new version of Semantic Convention may instead
emit the GET as "http.request.method".
Future versions the OpenTelemetry.*.AWS libraries will include updates to the Semantic Convention, which may break compatibility with a previous version.
The default will remain as V1_28_0 until the next major version bump.
To opt in to automatic upgrades, you can use SemanticConventionVersion.Latest
or you can specify a specific version:
using OpenTelemetry;
using OpenTelemetry.AWS;
using OpenTelemetry.Contrib.Extensions.AWSXRay.Trace;
using OpenTelemetry.Trace;
public void ConfigureServices(IServiceCollection services)
{
services.AddControllers();
services.AddOpenTelemetryTracing((builder) => builder
.AddAWSInstrumentation(opt => {
// pin to a specific Semantic Convention version
opt.SemanticConventionVersion = SemanticConventionVersion.V1_29_0;
});
}
NOTE: Once a Semantic Convention becomes Stable, OpenTelemetry.*.AWS libraries will remain on that version until the next major version bump.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. 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 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. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on OpenTelemetry.Instrumentation.AWS:
| Package | Downloads |
|---|---|
|
Grafana.OpenTelemetry
Full Grafana distribution of OpenTelemetry .NET |
|
|
Sitko.Core.Storage.S3
Sitko.Core is a set of libraries to help build .NET Core applications fast |
|
|
Siemens.AspNet.MinimalApi.Sdk
A library which contains following functions: - Siemens.AspNet.MinimalApi.Sdk |
|
|
Siemens.AspNet.DbProvider
A library which contains following functions: - Siemens.AspNet.DbProvider |
|
|
Davasorus.Utility.DotNet.Telemetry
OpenTelemetry distributed tracing and telemetry integration for Davasorus Utility packages. Provides optional activity sources, spans, and tracing capabilities with Fluent API configuration. |
Showing the top 3 popular GitHub repositories that depend on OpenTelemetry.Instrumentation.AWS:
| Repository | Stars |
|---|---|
|
GZTimeWalker/GZCTF
The GZ::CTF project, an open source CTF platform.
|
|
|
sitkoru/Sitko.Core
Sitko.Core is a set of libraries to help build .NET Core applications fast
|
|
|
aws/integrations-on-dotnet-aspire-for-aws
This repositry contains the integrations with .NET Aspire for AWS.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 1.15.1 | 774,627 | 4/21/2026 |
| 1.15.0 | 918,440 | 1/21/2026 |
| 1.14.2 | 100,406 | 1/14/2026 |
| 1.14.1 | 160,054 | 12/19/2025 |
| 1.14.0 | 309,168 | 11/13/2025 |
| 1.13.0 | 170,520 | 10/29/2025 |
| 1.12.1 | 441,783 | 9/3/2025 |
| 1.12.0 | 1,507,711 | 5/6/2025 |
| 1.11.3 | 821,376 | 5/1/2025 |
| 1.11.2 | 961,401 | 3/18/2025 |
| 1.11.1 | 439,921 | 3/6/2025 |
| 1.11.0 | 414,807 | 1/29/2025 |
| 1.10.0-rc.2 | 26,264 | 1/15/2025 |
| 1.10.0-rc.1 | 12,207 | 1/6/2025 |
| 1.10.0-beta.3 | 18,484 | 12/20/2024 |
| 1.10.0-beta.2 | 15,179 | 12/12/2024 |
| 1.10.0-beta.1 | 546,865 | 11/23/2024 |
| 1.1.0-beta.6 | 570,543 | 9/10/2024 |
| 1.1.0-beta.5 | 47,059 | 8/22/2024 |
| 1.1.0-beta.4 | 1,123,025 | 4/12/2024 |