Datadog.Trace 3.3.1

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Datadog.Trace --version 3.3.1                
NuGet\Install-Package Datadog.Trace -Version 3.3.1                
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="Datadog.Trace" Version="3.3.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Datadog.Trace --version 3.3.1                
#r "nuget: Datadog.Trace, 3.3.1"                
#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.
// Install Datadog.Trace as a Cake Addin
#addin nuget:?package=Datadog.Trace&version=3.3.1

// Install Datadog.Trace as a Cake Tool
#tool nuget:?package=Datadog.Trace&version=3.3.1                

Datadog.Trace NuGet package

This package contains the Datadog .NET APM tracer for configuring custom instrumentation.

⚠ Starting with version 3.0.0, this package requires that you also configure automatic instrumentation. Using this package without automatic instrumentation is no longer supported

If you are only using automatic instrumentation, you do not need this package. Please read our documentation for details on how to install the tracer for automatic instrumentation.

If you are using automatic instrumentation and would like to interact with APM only through C# attributes, see the Datadog.Trace.Annotations NuGet package.

Please note that Datadog does not support tracing (manual or automatic) in partial-trust environments.

Getting Started

  1. Configure the Datadog agent for APM as described in our documentation.
  2. Configure automatic instrumentation as described in our documentation.
  3. Configure custom instrumentation, as shown below
  4. View your live data on Datadog.

Configuring Datadog in code

There are multiple ways to configure your application: using environment variables, a web.config file, or a datadog.json file, as described in our documentation. This NuGet package also allows you to configure settings in code.

To override configuration settings, create an instance of TracerSettings, and pass it to the static Tracer.Configure() method:

using Datadog.Trace;

// Create a settings object using the existing
// environment variables and config sources
var settings = TracerSettings.FromDefaultSources();

// Override a value
settings.GlobalTags.Add("SomeKey", "SomeValue");

// Replace the tracer configuration
Tracer.Configure(settings);

Calling Tracer.Configure() will replace the settings for all subsequent traces, both for custom instrumentation and for automatic instrumentation.

⚠️ Replacing the configuration should be done once, as early as possible in your application.

Create custom traces

To create and activate a custom span, use Tracer.Instance.StartActive(). If a trace is already active (when created by automatic instrumentation, for example), the span will be part of the current trace. If there is no current trace, a new one will be started.

⚠️ Ensure you dispose of the scope returned from StartActive. Disposing the scope will close the span, and ensure the trace is flushed to Datadog once all its spans are closed.

using Datadog.Trace;

// Start a new span
using (var scope = Tracer.Instance.StartActive("custom-operation"))
{
    // Do something
}

Release Notes

You can view the notes for the latest release on GitHub.

Upgrading from 2.x to 3.0

The .NET tracer v3.0.0 includes breaking changes that you must be aware of before upgrading your applications. The most important high-level changes are listed below, and described in more detail later in this document

  • Breaking changes
    • Custom-only tracing (using the Datadog.Trace NuGet package), without any automatic tracing, is no longer supported. Custom instrumentation with the Datadog.Trace NuGet where you have also configured automatic-instrumentation is still supported as it was in v2.x.x.
    • The public API surface has changed in the Datadog.Trace NuGet package. A number of previously obsolete APIs have been removed, and some other APIs have been marked obsolete. Most changes are related to how you create TracerSettings and Tracer instances.
    • Changes to default settings. The default values of some settings have changed, and others have been removed. See below for more details.
    • Changes in behavior. The semantic requirements and meaning of some settings have changed, as have some of the tags added to traces. See below for more details.
    • The 32-bit MSI installer will no longer be available. The 64-bit MSI installer already includes support for tracing 32-bit processes, so you should use this installer instead.
    • The client library will still be injected when DD_TRACE_ENABLED=0. In v2.x.x, setting DD_TRACE_ENABLED=0 would prevent the client library from being injected into the application completely. In v3.0.0+, the client library will still be injected, but tracing will be disabled.
    • Referencing the Datadog.Trace.AspNet module is no longer supported. In v1.x.x and 2.x.x ASP.NET support allowed adding a reference to the Datadog.Trace.AspNet module in your web.config. This is no longer supported in v3.x.x.
  • Deprecation notices
    • .NET Core 2.1 is marked EOL in v3.0.0+ of the tracer. That means versions 2.0, 2.1, 2.2 and 3.0 of .NET Core are now EOL. These versions may still work with v3.0.0+, but they will no longer receive significant testing and you will receive limited support for issues arising with EOL versions.
    • Datadog.Trace.OpenTracing is now obsolete. OpenTracing is considered deprecated, and so Datadog.Trace.OpenTracing is considered deprecated. See the following details on future deprecation.
    • macOS 11 is no longer supported for CI Visibility in v3.0.0+. Only macOS 12 and above are supported.
  • Major version policy and future deprecation
    • Announcing a major version roadmap. We intend to make yearly major releases, starting from v3.0.0 in 2024, and v4.0.0 in 2025. We clearly will aim for minimal breaking changes, with the primary focus being on maintaining support for new versions of .NET and removal of EOL frameworks and operating systems.
    • Planned removal of support for .NET Core 2.x and .NET Core 3.0 in version v4.0.0+. We intend to completely remove support for .NET Core 2.x and .NET Core 3.0 in v4.0.0. .NET Framework 4.6.1+ will continue to be supported.
    • Planned removal of support for some linux distributions. In version v4.0.0, we intend to drop support for CentOS 7, RHEL 7, and CentOS Stream 8.
    • Planned remove of support for App Analytics. In version v4.0.0, we intend to drop support for App Analytics and associated settings.

For a full list of changes and a guide to migrating your application, please see the migration guide.

Get in touch

If you have questions, feedback, or feature requests, reach our support.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (11)

Showing the top 5 NuGet packages that depend on Datadog.Trace:

Package Downloads
Datadog.Trace.Bundle

Auto-instrumentation assets for Datadog APM

Datadog.Trace.OpenTracing

Provides OpenTracing support for Datadog APM

Datadog.Monitoring.Distribution

Auto-instrumentation assets for Datadog APM

Lucca.Logs.Shared

Lucca.Logs

Datadog.Trace.BenchmarkDotNet

BenchmarkDotNet exporter for Datadog CI Visibility

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Datadog.Trace:

Repository Stars
DataDog/dd-trace-dotnet
.NET Client Library for Datadog APM
Version Downloads Last updated
3.5.0 6,001 11/6/2024
3.4.1 34,219 10/28/2024
3.4.0 16,726 10/24/2024
3.3.1 235,465 9/18/2024
3.3.0 21,730 9/16/2024
3.2.0 113,928 9/2/2024
3.1.0-prerelease 1,276 8/14/2024
3.0.0-prerelease 756 7/29/2024
2.61.0 667 11/6/2024
2.60.0 8,554 10/24/2024
2.59.0 62,059 9/16/2024
2.58.0 46,467 9/2/2024
2.57.0 268,001 8/14/2024
2.56.0 196,185 7/25/2024
2.55.0 79,415 7/18/2024
2.54.0 146,882 7/9/2024
2.53.2 1,213,523 6/19/2024
2.53.1 63,120 6/17/2024
2.53.0 150,407 6/11/2024
2.52.0 458,894 5/23/2024
2.51.0 462,076 5/6/2024
2.50.0 333,564 4/17/2024
2.49.0 668,169 3/18/2024
2.48.0 1,003,587 2/29/2024
2.47.0 633,373 2/14/2024
2.46.0 628,118 1/24/2024
2.45.0 292,952 1/10/2024
2.44.0 467,513 12/19/2023
2.43.0 356,684 12/5/2023
2.42.0 239,580 11/21/2023
2.41.0 835,553 11/6/2023
2.40.0 478,400 10/16/2023
2.39.0 83,138 10/11/2023
2.38.0 364,227 9/20/2023
2.37.0 578,338 8/31/2023
2.36.0 355,640 8/23/2023
2.35.0 364,949 7/31/2023
2.34.0 37,987 7/25/2023
2.33.0 299,491 7/4/2023
2.32.0 333,741 6/20/2023
2.31.0 574,711 5/31/2023
2.30.0 730,545 5/5/2023
2.29.0 365,755 4/17/2023
2.28.0 104,888 4/12/2023
2.27.0 532,275 3/24/2023
2.26.0 345,873 3/9/2023
2.24.1 720,798 2/27/2023
2.24.0 51,661 2/24/2023
2.23.0 581,883 2/8/2023
2.22.0 564,927 1/24/2023
2.21.0 457,733 12/20/2022
2.20.0 481,504 12/2/2022
2.19.0 449,977 11/10/2022
2.18.0 831,996 10/25/2022
2.17.0 989,349 10/11/2022
2.16.0 72,931 10/7/2022
2.15.0 405,981 9/26/2022
2.14.0 538,892 8/23/2022
2.13.0 280,719 8/3/2022
2.12.0 417,025 7/13/2022
2.11.0 508,275 6/22/2022
2.10.0 359,118 6/9/2022
2.9.0 784,533 5/13/2022
2.8.0 342,182 5/5/2022
2.7.0 319,596 4/22/2022
2.6.0 563,801 4/7/2022
2.5.1 267,022 3/25/2022
2.4.4 854,939 3/16/2022
2.4.3 475,536 3/2/2022
2.4.2 104,015 2/25/2022
2.4.1 5,188 2/24/2022
2.4.0 17,211 2/22/2022
2.3.0 456,626 2/10/2022
2.2.0 203,432 2/2/2022
2.1.1 380,190 1/19/2022
2.1.0 475,145 1/7/2022
2.0.1 439,792 12/20/2021
2.0.0-prerelease 13,891 12/10/2021
1.31.2 372,435 2/22/2022 1.31.2 is deprecated because it is no longer maintained.
1.31.1 39,105 12/21/2021 1.31.1 is deprecated because it is no longer maintained.
1.31.0 301,238 12/2/2021 1.31.0 is deprecated because it is no longer maintained.
1.30.1 131,717 11/24/2021 1.30.1 is deprecated because it is no longer maintained.
1.30.0 422,626 11/16/2021 1.30.0 is deprecated because it is no longer maintained.
1.29.1-prerelease 65,971 10/28/2021 1.29.1-prerelease is deprecated because it is no longer maintained.
1.29.0 912,214 10/15/2021 1.29.0 is deprecated because it is no longer maintained.
1.28.8 114,438 9/29/2021 1.28.8 is deprecated because it is no longer maintained.
1.28.7 168,899 9/14/2021 1.28.7 is deprecated because it is no longer maintained.
1.28.6 70,999 9/8/2021 1.28.6 is deprecated because it is no longer maintained.
1.28.5-prerelease 855 8/30/2021 1.28.5-prerelease is deprecated because it is no longer maintained.
1.28.4 176,896 8/30/2021 1.28.4 is deprecated because it is no longer maintained.
1.28.3-prerelease 428 8/17/2021 1.28.3-prerelease is deprecated because it is no longer maintained.
1.28.2 227,023 8/4/2021 1.28.2 is deprecated because it is no longer maintained.
1.28.1-prerelease 536 7/14/2021 1.28.1-prerelease is deprecated because it is no longer maintained.
1.28.0 245,172 7/12/2021 1.28.0 is deprecated because it is no longer maintained.
1.27.1 808,149 6/16/2021 1.27.1 is deprecated because it is no longer maintained.
1.27.0 171,783 6/2/2021 1.27.0 is deprecated because it is no longer maintained.
1.26.3 439,772 5/11/2021 1.26.3 is deprecated because it is no longer maintained.
1.25.2-prerelease 2,549 4/2/2021 1.25.2-prerelease is deprecated because it is no longer maintained.
1.25.0 436,149 3/22/2021 1.25.0 is deprecated because it is no longer maintained.
1.24.0 364,839 2/23/2021 1.24.0 is deprecated because it is no longer maintained.
1.23.0 296,098 2/3/2021 1.23.0 is deprecated because it is no longer maintained.
1.22.2-prerelease 440 2/1/2021 1.22.2-prerelease is deprecated because it is no longer maintained.
1.22.1-prerelease 462 1/28/2021 1.22.1-prerelease is deprecated because it is no longer maintained.
1.22.0 208,451 1/14/2021 1.22.0 is deprecated because it is no longer maintained.
1.21.2-prerelease 3,047 12/21/2020 1.21.2-prerelease is deprecated because it is no longer maintained.
1.21.1 68,668 12/17/2020 1.21.1 is deprecated because it is no longer maintained.
1.21.0 114,994 11/25/2020 1.21.0 is deprecated because it is no longer maintained.
1.20.0 320,948 11/3/2020 1.20.0 is deprecated because it is no longer maintained.
1.19.6-prerelease 1,561 10/15/2020 1.19.6-prerelease is deprecated because it is no longer maintained.
1.19.5 370,607 10/7/2020 1.19.5 is deprecated because it is no longer maintained.
1.19.4 106,158 9/29/2020 1.19.4 is deprecated because it is no longer maintained.
1.19.3 177,920 9/17/2020 1.19.3 is deprecated because it is no longer maintained.
1.19.2 273,707 8/31/2020 1.19.2 is deprecated because it is no longer maintained.
1.19.1 669,630 8/10/2020 1.19.1 is deprecated because it is no longer maintained.
1.19.0 69,650 8/7/2020 1.19.0 is deprecated because it is no longer maintained.
1.18.3 201,856 7/17/2020 1.18.3 is deprecated because it is no longer maintained.
1.18.2 55,139 7/9/2020 1.18.2 is deprecated because it is no longer maintained.
1.18.1-prerelease 571 7/6/2020 1.18.1-prerelease is deprecated because it is no longer maintained.
1.18.0 35,297 6/25/2020 1.18.0 is deprecated because it is no longer maintained.
1.17.1-prerelease 623 6/23/2020 1.17.1-prerelease is deprecated because it is no longer maintained.
1.17.0 421,267 5/15/2020 1.17.0 is deprecated because it is no longer maintained.
1.16.3-prerelease 585 5/13/2020 1.16.3-prerelease is deprecated because it is no longer maintained.
1.16.2 56,084 5/5/2020 1.16.2 is deprecated because it is no longer maintained.
1.16.1 233,549 4/20/2020 1.16.1 is deprecated because it is no longer maintained.
1.16.0 41,600 4/2/2020 1.16.0 is deprecated because it is no longer maintained.
1.15.1-prerelease 695 3/30/2020 1.15.1-prerelease is deprecated because it is no longer maintained.
1.15.0 257,442 3/23/2020 1.15.0 is deprecated because it is no longer maintained.
1.14.2 18,909 3/13/2020 1.14.2 is deprecated because it is no longer maintained.
1.14.1-prerelease 523 3/12/2020 1.14.1-prerelease is deprecated because it is no longer maintained.
1.14.0 7,668 3/9/2020 1.14.0 is deprecated because it is no longer maintained.
1.13.4-prerelease 1,523 3/4/2020 1.13.4-prerelease is deprecated because it is no longer maintained.
1.13.3-prerelease 590 2/24/2020 1.13.3-prerelease is deprecated because it is no longer maintained.
1.13.2 118,245 2/21/2020 1.13.2 is deprecated because it is no longer maintained.
1.13.0 360,714 2/14/2020 1.13.0 is deprecated because it is no longer maintained.
1.12.0 100,917 2/5/2020 1.12.0 is deprecated because it is no longer maintained.
1.11.1-prerelease 1,403 1/13/2020 1.11.1-prerelease is deprecated because it is no longer maintained.
1.11.0 128,353 12/11/2019 1.11.0 is deprecated because it is no longer maintained.
1.10.3-prerelease 662 12/11/2019 1.10.3-prerelease is deprecated because it is no longer maintained.
1.10.2-prerelease 577 12/10/2019 1.10.2-prerelease is deprecated because it is no longer maintained.
1.10.1-prerelease 713 12/10/2019 1.10.1-prerelease is deprecated because it is no longer maintained.
1.10.0 76,572 11/27/2019 1.10.0 is deprecated because it is no longer maintained.
1.9.1-prerelease 1,058 11/14/2019 1.9.1-prerelease is deprecated because it is no longer maintained.
1.9.0 199,773 11/7/2019 1.9.0 is deprecated because it is no longer maintained.
1.8.0 200,897 10/17/2019 1.8.0 is deprecated because it is no longer maintained.
1.7.0 95,383 9/10/2019 1.7.0 is deprecated because it is no longer maintained.
1.6.2 82,296 8/20/2019 1.6.2 is deprecated because it is no longer maintained.
1.6.1 21,847 8/14/2019 1.6.1 is deprecated because it is no longer maintained.
1.6.0 81,694 7/20/2019 1.6.0 is deprecated because it is no longer maintained.
1.4.1 358,217 6/26/2019 1.4.1 is deprecated because it is no longer maintained.
1.4.0 67,237 6/20/2019 1.4.0 is deprecated because it is no longer maintained.
1.2.0 70,685 5/20/2019 1.2.0 is deprecated because it is no longer maintained.
1.1.0 86,735 4/17/2019 1.1.0 is deprecated because it is no longer maintained.
1.0.0 78,752 4/5/2019 1.0.0 is deprecated because it is no longer maintained.
0.8.2-beta 8,759 3/28/2019 0.8.2-beta is deprecated because it is no longer maintained.
0.8.1-beta 2,300 3/21/2019 0.8.1-beta is deprecated because it is no longer maintained.
0.8.0-beta 1,975 3/11/2019 0.8.0-beta is deprecated because it is no longer maintained.
0.7.1-beta 51,450 1/31/2019 0.7.1-beta is deprecated because it is no longer maintained.
0.7.0-beta 29,063 1/17/2019 0.7.0-beta is deprecated because it is no longer maintained.
0.6.0-beta 74,080 12/21/2018 0.6.0-beta is deprecated because it is no longer maintained.
0.5.2-beta 29,417 12/4/2018 0.5.2-beta is deprecated because it is no longer maintained.
0.5.1-beta 11,403 11/20/2018 0.5.1-beta is deprecated because it is no longer maintained.
0.5.0-beta 612,576 10/30/2018 0.5.0-beta is deprecated because it is no longer maintained.
0.4.1-beta 2,889 10/23/2018 0.4.1-beta is deprecated because it is no longer maintained.
0.4.0-beta 1,001 10/12/2018 0.4.0-beta is deprecated because it is no longer maintained.
0.3.2-beta 2,052 9/26/2018 0.3.2-beta is deprecated because it is no longer maintained.
0.3.1-beta 1,107 9/21/2018 0.3.1-beta is deprecated because it is no longer maintained.
0.3.0-beta 941 9/13/2018 0.3.0-beta is deprecated because it is no longer maintained.
0.2.4-alpha 931 9/13/2018 0.2.4-alpha is deprecated because it is no longer maintained.

See release notes at https://github.com/DataDog/dd-trace-dotnet/releases.
     Please note that Datadog does not support tracing (manual or automatic) in partial-trust environments.