Datadog.Trace 3.2.0

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.2.0                
NuGet\Install-Package Datadog.Trace -Version 3.2.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="Datadog.Trace" Version="3.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Datadog.Trace --version 3.2.0                
#r "nuget: Datadog.Trace, 3.2.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.
// Install Datadog.Trace as a Cake Addin
#addin nuget:?package=Datadog.Trace&version=3.2.0

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

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.6.0 6,563 11/19/2024
3.5.0 56,195 11/6/2024
3.4.1 57,502 10/28/2024
3.4.0 21,984 10/24/2024
3.3.1 286,542 9/18/2024
3.3.0 26,806 9/16/2024
3.2.0 128,393 9/2/2024
3.1.0-prerelease 1,279 8/14/2024
3.0.0-prerelease 759 7/29/2024
2.61.0 5,918 11/6/2024
2.60.0 22,659 10/24/2024
2.59.0 80,844 9/16/2024
2.58.0 54,010 9/2/2024
2.57.0 294,777 8/14/2024
2.56.0 215,304 7/25/2024
2.55.0 82,916 7/18/2024
2.54.0 154,542 7/9/2024
2.53.2 1,359,978 6/19/2024
2.53.1 72,438 6/17/2024
2.53.0 157,444 6/11/2024
2.52.0 499,060 5/23/2024
2.51.0 482,858 5/6/2024
2.50.0 353,302 4/17/2024
2.49.0 702,958 3/18/2024
2.48.0 1,024,224 2/29/2024
2.47.0 656,915 2/14/2024
2.46.0 645,648 1/24/2024
2.45.0 298,621 1/10/2024
2.44.0 485,729 12/19/2023
2.43.0 369,112 12/5/2023
2.42.0 246,356 11/21/2023
2.41.0 859,746 11/6/2023
2.40.0 492,095 10/16/2023
2.39.0 84,765 10/11/2023
2.38.0 371,921 9/20/2023
2.37.0 594,855 8/31/2023
2.36.0 359,659 8/23/2023
2.35.0 368,834 7/31/2023
2.34.0 38,396 7/25/2023
2.33.0 301,033 7/4/2023
2.32.0 337,464 6/20/2023
2.31.0 582,228 5/31/2023
2.30.0 739,930 5/5/2023
2.29.0 368,460 4/17/2023
2.28.0 106,091 4/12/2023
2.27.0 539,250 3/24/2023
2.26.0 348,645 3/9/2023
2.24.1 738,258 2/27/2023
2.24.0 51,716 2/24/2023
2.23.0 585,730 2/8/2023
2.22.0 570,874 1/24/2023
2.21.0 460,455 12/20/2022
2.20.0 484,477 12/2/2022
2.19.0 454,664 11/10/2022
2.18.0 836,912 10/25/2022
2.17.0 994,210 10/11/2022
2.16.0 74,210 10/7/2022
2.15.0 409,093 9/26/2022
2.14.0 541,389 8/23/2022
2.13.0 281,547 8/3/2022
2.12.0 421,554 7/13/2022
2.11.0 513,379 6/22/2022
2.10.0 360,667 6/9/2022
2.9.0 791,292 5/13/2022
2.8.0 344,604 5/5/2022
2.7.0 324,092 4/22/2022
2.6.0 567,822 4/7/2022
2.5.1 267,528 3/25/2022
2.4.4 868,041 3/16/2022
2.4.3 477,301 3/2/2022
2.4.2 104,822 2/25/2022
2.4.1 5,197 2/24/2022
2.4.0 17,227 2/22/2022
2.3.0 459,331 2/10/2022
2.2.0 203,911 2/2/2022
2.1.1 381,655 1/19/2022
2.1.0 484,642 1/7/2022
2.0.1 442,415 12/20/2021
2.0.0-prerelease 14,015 12/10/2021
1.31.2 383,181 2/22/2022 1.31.2 is deprecated because it is no longer maintained.
1.31.1 39,181 12/21/2021 1.31.1 is deprecated because it is no longer maintained.
1.31.0 303,022 12/2/2021 1.31.0 is deprecated because it is no longer maintained.
1.30.1 131,837 11/24/2021 1.30.1 is deprecated because it is no longer maintained.
1.30.0 425,808 11/16/2021 1.30.0 is deprecated because it is no longer maintained.
1.29.1-prerelease 66,046 10/28/2021 1.29.1-prerelease is deprecated because it is no longer maintained.
1.29.0 926,506 10/15/2021 1.29.0 is deprecated because it is no longer maintained.
1.28.8 114,494 9/29/2021 1.28.8 is deprecated because it is no longer maintained.
1.28.7 169,336 9/14/2021 1.28.7 is deprecated because it is no longer maintained.
1.28.6 71,083 9/8/2021 1.28.6 is deprecated because it is no longer maintained.
1.28.5-prerelease 858 8/30/2021 1.28.5-prerelease is deprecated because it is no longer maintained.
1.28.4 177,332 8/30/2021 1.28.4 is deprecated because it is no longer maintained.
1.28.3-prerelease 431 8/17/2021 1.28.3-prerelease is deprecated because it is no longer maintained.
1.28.2 227,737 8/4/2021 1.28.2 is deprecated because it is no longer maintained.
1.28.1-prerelease 539 7/14/2021 1.28.1-prerelease is deprecated because it is no longer maintained.
1.28.0 245,641 7/12/2021 1.28.0 is deprecated because it is no longer maintained.
1.27.1 809,949 6/16/2021 1.27.1 is deprecated because it is no longer maintained.
1.27.0 173,953 6/2/2021 1.27.0 is deprecated because it is no longer maintained.
1.26.3 440,631 5/11/2021 1.26.3 is deprecated because it is no longer maintained.
1.25.2-prerelease 2,552 4/2/2021 1.25.2-prerelease is deprecated because it is no longer maintained.
1.25.0 437,870 3/22/2021 1.25.0 is deprecated because it is no longer maintained.
1.24.0 365,248 2/23/2021 1.24.0 is deprecated because it is no longer maintained.
1.23.0 296,304 2/3/2021 1.23.0 is deprecated because it is no longer maintained.
1.22.2-prerelease 443 2/1/2021 1.22.2-prerelease is deprecated because it is no longer maintained.
1.22.1-prerelease 465 1/28/2021 1.22.1-prerelease is deprecated because it is no longer maintained.
1.22.0 209,833 1/14/2021 1.22.0 is deprecated because it is no longer maintained.
1.21.2-prerelease 3,050 12/21/2020 1.21.2-prerelease is deprecated because it is no longer maintained.
1.21.1 68,846 12/17/2020 1.21.1 is deprecated because it is no longer maintained.
1.21.0 115,094 11/25/2020 1.21.0 is deprecated because it is no longer maintained.
1.20.0 323,508 11/3/2020 1.20.0 is deprecated because it is no longer maintained.
1.19.6-prerelease 1,564 10/15/2020 1.19.6-prerelease is deprecated because it is no longer maintained.
1.19.5 372,138 10/7/2020 1.19.5 is deprecated because it is no longer maintained.
1.19.4 106,211 9/29/2020 1.19.4 is deprecated because it is no longer maintained.
1.19.3 178,581 9/17/2020 1.19.3 is deprecated because it is no longer maintained.
1.19.2 274,047 8/31/2020 1.19.2 is deprecated because it is no longer maintained.
1.19.1 680,182 8/10/2020 1.19.1 is deprecated because it is no longer maintained.
1.19.0 69,677 8/7/2020 1.19.0 is deprecated because it is no longer maintained.
1.18.3 202,675 7/17/2020 1.18.3 is deprecated because it is no longer maintained.
1.18.2 55,400 7/9/2020 1.18.2 is deprecated because it is no longer maintained.
1.18.1-prerelease 574 7/6/2020 1.18.1-prerelease is deprecated because it is no longer maintained.
1.18.0 35,307 6/25/2020 1.18.0 is deprecated because it is no longer maintained.
1.17.1-prerelease 626 6/23/2020 1.17.1-prerelease is deprecated because it is no longer maintained.
1.17.0 421,632 5/15/2020 1.17.0 is deprecated because it is no longer maintained.
1.16.3-prerelease 588 5/13/2020 1.16.3-prerelease is deprecated because it is no longer maintained.
1.16.2 56,089 5/5/2020 1.16.2 is deprecated because it is no longer maintained.
1.16.1 234,144 4/20/2020 1.16.1 is deprecated because it is no longer maintained.
1.16.0 41,709 4/2/2020 1.16.0 is deprecated because it is no longer maintained.
1.15.1-prerelease 698 3/30/2020 1.15.1-prerelease is deprecated because it is no longer maintained.
1.15.0 258,481 3/23/2020 1.15.0 is deprecated because it is no longer maintained.
1.14.2 18,984 3/13/2020 1.14.2 is deprecated because it is no longer maintained.
1.14.1-prerelease 526 3/12/2020 1.14.1-prerelease is deprecated because it is no longer maintained.
1.14.0 7,671 3/9/2020 1.14.0 is deprecated because it is no longer maintained.
1.13.4-prerelease 1,526 3/4/2020 1.13.4-prerelease is deprecated because it is no longer maintained.
1.13.3-prerelease 593 2/24/2020 1.13.3-prerelease is deprecated because it is no longer maintained.
1.13.2 118,268 2/21/2020 1.13.2 is deprecated because it is no longer maintained.
1.13.0 361,749 2/14/2020 1.13.0 is deprecated because it is no longer maintained.
1.12.0 101,286 2/5/2020 1.12.0 is deprecated because it is no longer maintained.
1.11.1-prerelease 1,406 1/13/2020 1.11.1-prerelease is deprecated because it is no longer maintained.
1.11.0 128,885 12/11/2019 1.11.0 is deprecated because it is no longer maintained.
1.10.3-prerelease 665 12/11/2019 1.10.3-prerelease is deprecated because it is no longer maintained.
1.10.2-prerelease 580 12/10/2019 1.10.2-prerelease is deprecated because it is no longer maintained.
1.10.1-prerelease 716 12/10/2019 1.10.1-prerelease is deprecated because it is no longer maintained.
1.10.0 76,774 11/27/2019 1.10.0 is deprecated because it is no longer maintained.
1.9.1-prerelease 1,061 11/14/2019 1.9.1-prerelease is deprecated because it is no longer maintained.
1.9.0 201,605 11/7/2019 1.9.0 is deprecated because it is no longer maintained.
1.8.0 201,497 10/17/2019 1.8.0 is deprecated because it is no longer maintained.
1.7.0 95,386 9/10/2019 1.7.0 is deprecated because it is no longer maintained.
1.6.2 82,990 8/20/2019 1.6.2 is deprecated because it is no longer maintained.
1.6.1 21,850 8/14/2019 1.6.1 is deprecated because it is no longer maintained.
1.6.0 81,701 7/20/2019 1.6.0 is deprecated because it is no longer maintained.
1.4.1 358,258 6/26/2019 1.4.1 is deprecated because it is no longer maintained.
1.4.0 67,448 6/20/2019 1.4.0 is deprecated because it is no longer maintained.
1.2.0 70,768 5/20/2019 1.2.0 is deprecated because it is no longer maintained.
1.1.0 86,947 4/17/2019 1.1.0 is deprecated because it is no longer maintained.
1.0.0 79,180 4/5/2019 1.0.0 is deprecated because it is no longer maintained.
0.8.2-beta 8,983 3/28/2019 0.8.2-beta is deprecated because it is no longer maintained.
0.8.1-beta 2,303 3/21/2019 0.8.1-beta is deprecated because it is no longer maintained.
0.8.0-beta 1,978 3/11/2019 0.8.0-beta is deprecated because it is no longer maintained.
0.7.1-beta 51,453 1/31/2019 0.7.1-beta is deprecated because it is no longer maintained.
0.7.0-beta 29,485 1/17/2019 0.7.0-beta is deprecated because it is no longer maintained.
0.6.0-beta 74,300 12/21/2018 0.6.0-beta is deprecated because it is no longer maintained.
0.5.2-beta 29,420 12/4/2018 0.5.2-beta is deprecated because it is no longer maintained.
0.5.1-beta 11,406 11/20/2018 0.5.1-beta is deprecated because it is no longer maintained.
0.5.0-beta 612,594 10/30/2018 0.5.0-beta is deprecated because it is no longer maintained.
0.4.1-beta 2,892 10/23/2018 0.4.1-beta is deprecated because it is no longer maintained.
0.4.0-beta 1,004 10/12/2018 0.4.0-beta is deprecated because it is no longer maintained.
0.3.2-beta 2,055 9/26/2018 0.3.2-beta is deprecated because it is no longer maintained.
0.3.1-beta 1,110 9/21/2018 0.3.1-beta is deprecated because it is no longer maintained.
0.3.0-beta 944 9/13/2018 0.3.0-beta is deprecated because it is no longer maintained.
0.2.4-alpha 934 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.