Datadog.Trace 3.1.0-prerelease

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

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

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.2.0 6,886 9/2/2024
3.1.0-prerelease 1,106 8/14/2024
3.0.0-prerelease 697 7/29/2024
2.58.0 2,293 9/2/2024
2.57.0 87,971 8/14/2024
2.56.0 90,812 7/25/2024
2.55.0 52,180 7/18/2024
2.54.0 93,800 7/9/2024
2.53.2 568,472 6/19/2024
2.53.1 35,170 6/17/2024
2.53.0 95,628 6/11/2024
2.52.0 257,307 5/23/2024
2.51.0 309,136 5/6/2024
2.50.0 250,838 4/17/2024
2.49.0 522,148 3/18/2024
2.48.0 881,375 2/29/2024
2.47.0 502,047 2/14/2024
2.46.0 527,144 1/24/2024
2.45.0 261,887 1/10/2024
2.44.0 373,668 12/19/2023
2.43.0 294,847 12/5/2023
2.42.0 205,295 11/21/2023
2.41.0 696,069 11/6/2023
2.40.0 406,047 10/16/2023
2.39.0 68,499 10/11/2023
2.38.0 324,054 9/20/2023
2.37.0 499,160 8/31/2023
2.36.0 323,118 8/23/2023
2.35.0 344,765 7/31/2023
2.34.0 36,932 7/25/2023
2.33.0 287,469 7/4/2023
2.32.0 303,734 6/20/2023
2.31.0 527,363 5/31/2023
2.30.0 681,442 5/5/2023
2.29.0 349,852 4/17/2023
2.28.0 99,606 4/12/2023
2.27.0 480,437 3/24/2023
2.26.0 321,694 3/9/2023
2.24.1 610,190 2/27/2023
2.24.0 51,369 2/24/2023
2.23.0 550,649 2/8/2023
2.22.0 544,129 1/24/2023
2.21.0 441,348 12/20/2022
2.20.0 467,515 12/2/2022
2.19.0 426,578 11/10/2022
2.18.0 803,010 10/25/2022
2.17.0 956,844 10/11/2022
2.16.0 66,959 10/7/2022
2.15.0 391,726 9/26/2022
2.14.0 524,853 8/23/2022
2.13.0 275,104 8/3/2022
2.12.0 395,681 7/13/2022
2.11.0 485,504 6/22/2022
2.10.0 346,688 6/9/2022
2.9.0 743,553 5/13/2022
2.8.0 328,890 5/5/2022
2.7.0 300,066 4/22/2022
2.6.0 546,388 4/7/2022
2.5.1 264,359 3/25/2022
2.4.4 802,220 3/16/2022
2.4.3 462,932 3/2/2022
2.4.2 99,468 2/25/2022
2.4.1 5,151 2/24/2022
2.4.0 16,893 2/22/2022
2.3.0 438,706 2/10/2022
2.2.0 201,172 2/2/2022
2.1.1 373,853 1/19/2022
2.1.0 438,247 1/7/2022
2.0.1 425,258 12/20/2021
2.0.0-prerelease 13,280 12/10/2021
1.31.2 316,628 2/22/2022 1.31.2 is deprecated because it is no longer maintained.
1.31.1 38,934 12/21/2021 1.31.1 is deprecated because it is no longer maintained.
1.31.0 282,492 12/2/2021 1.31.0 is deprecated because it is no longer maintained.
1.30.1 131,517 11/24/2021 1.30.1 is deprecated because it is no longer maintained.
1.30.0 406,782 11/16/2021 1.30.0 is deprecated because it is no longer maintained.
1.29.1-prerelease 65,718 10/28/2021 1.29.1-prerelease is deprecated because it is no longer maintained.
1.29.0 854,888 10/15/2021 1.29.0 is deprecated because it is no longer maintained.
1.28.8 113,967 9/29/2021 1.28.8 is deprecated because it is no longer maintained.
1.28.7 166,268 9/14/2021 1.28.7 is deprecated because it is no longer maintained.
1.28.6 70,677 9/8/2021 1.28.6 is deprecated because it is no longer maintained.
1.28.5-prerelease 816 8/30/2021 1.28.5-prerelease is deprecated because it is no longer maintained.
1.28.4 171,628 8/30/2021 1.28.4 is deprecated because it is no longer maintained.
1.28.3-prerelease 401 8/17/2021 1.28.3-prerelease is deprecated because it is no longer maintained.
1.28.2 223,095 8/4/2021 1.28.2 is deprecated because it is no longer maintained.
1.28.1-prerelease 516 7/14/2021 1.28.1-prerelease is deprecated because it is no longer maintained.
1.28.0 243,184 7/12/2021 1.28.0 is deprecated because it is no longer maintained.
1.27.1 799,638 6/16/2021 1.27.1 is deprecated because it is no longer maintained.
1.27.0 162,504 6/2/2021 1.27.0 is deprecated because it is no longer maintained.
1.26.3 434,797 5/11/2021 1.26.3 is deprecated because it is no longer maintained.
1.25.2-prerelease 2,520 4/2/2021 1.25.2-prerelease is deprecated because it is no longer maintained.
1.25.0 424,759 3/22/2021 1.25.0 is deprecated because it is no longer maintained.
1.24.0 362,509 2/23/2021 1.24.0 is deprecated because it is no longer maintained.
1.23.0 293,836 2/3/2021 1.23.0 is deprecated because it is no longer maintained.
1.22.2-prerelease 409 2/1/2021 1.22.2-prerelease is deprecated because it is no longer maintained.
1.22.1-prerelease 433 1/28/2021 1.22.1-prerelease is deprecated because it is no longer maintained.
1.22.0 201,696 1/14/2021 1.22.0 is deprecated because it is no longer maintained.
1.21.2-prerelease 3,017 12/21/2020 1.21.2-prerelease is deprecated because it is no longer maintained.
1.21.1 67,641 12/17/2020 1.21.1 is deprecated because it is no longer maintained.
1.21.0 114,537 11/25/2020 1.21.0 is deprecated because it is no longer maintained.
1.20.0 308,903 11/3/2020 1.20.0 is deprecated because it is no longer maintained.
1.19.6-prerelease 1,523 10/15/2020 1.19.6-prerelease is deprecated because it is no longer maintained.
1.19.5 362,022 10/7/2020 1.19.5 is deprecated because it is no longer maintained.
1.19.4 105,768 9/29/2020 1.19.4 is deprecated because it is no longer maintained.
1.19.3 173,719 9/17/2020 1.19.3 is deprecated because it is no longer maintained.
1.19.2 272,181 8/31/2020 1.19.2 is deprecated because it is no longer maintained.
1.19.1 625,549 8/10/2020 1.19.1 is deprecated because it is no longer maintained.
1.19.0 69,565 8/7/2020 1.19.0 is deprecated because it is no longer maintained.
1.18.3 195,910 7/17/2020 1.18.3 is deprecated because it is no longer maintained.
1.18.2 53,743 7/9/2020 1.18.2 is deprecated because it is no longer maintained.
1.18.1-prerelease 542 7/6/2020 1.18.1-prerelease is deprecated because it is no longer maintained.
1.18.0 34,704 6/25/2020 1.18.0 is deprecated because it is no longer maintained.
1.17.1-prerelease 607 6/23/2020 1.17.1-prerelease is deprecated because it is no longer maintained.
1.17.0 419,199 5/15/2020 1.17.0 is deprecated because it is no longer maintained.
1.16.3-prerelease 553 5/13/2020 1.16.3-prerelease is deprecated because it is no longer maintained.
1.16.2 55,976 5/5/2020 1.16.2 is deprecated because it is no longer maintained.
1.16.1 230,910 4/20/2020 1.16.1 is deprecated because it is no longer maintained.
1.16.0 40,966 4/2/2020 1.16.0 is deprecated because it is no longer maintained.
1.15.1-prerelease 681 3/30/2020 1.15.1-prerelease is deprecated because it is no longer maintained.
1.15.0 253,731 3/23/2020 1.15.0 is deprecated because it is no longer maintained.
1.14.2 18,499 3/13/2020 1.14.2 is deprecated because it is no longer maintained.
1.14.1-prerelease 502 3/12/2020 1.14.1-prerelease is deprecated because it is no longer maintained.
1.14.0 7,595 3/9/2020 1.14.0 is deprecated because it is no longer maintained.
1.13.4-prerelease 1,484 3/4/2020 1.13.4-prerelease is deprecated because it is no longer maintained.
1.13.3-prerelease 582 2/24/2020 1.13.3-prerelease is deprecated because it is no longer maintained.
1.13.2 118,031 2/21/2020 1.13.2 is deprecated because it is no longer maintained.
1.13.0 354,611 2/14/2020 1.13.0 is deprecated because it is no longer maintained.
1.12.0 99,554 2/5/2020 1.12.0 is deprecated because it is no longer maintained.
1.11.1-prerelease 1,368 1/13/2020 1.11.1-prerelease is deprecated because it is no longer maintained.
1.11.0 126,116 12/11/2019 1.11.0 is deprecated because it is no longer maintained.
1.10.3-prerelease 646 12/11/2019 1.10.3-prerelease is deprecated because it is no longer maintained.
1.10.2-prerelease 553 12/10/2019 1.10.2-prerelease is deprecated because it is no longer maintained.
1.10.1-prerelease 676 12/10/2019 1.10.1-prerelease is deprecated because it is no longer maintained.
1.10.0 75,743 11/27/2019 1.10.0 is deprecated because it is no longer maintained.
1.9.1-prerelease 1,014 11/14/2019 1.9.1-prerelease is deprecated because it is no longer maintained.
1.9.0 191,001 11/7/2019 1.9.0 is deprecated because it is no longer maintained.
1.8.0 198,327 10/17/2019 1.8.0 is deprecated because it is no longer maintained.
1.7.0 95,284 9/10/2019 1.7.0 is deprecated because it is no longer maintained.
1.6.2 78,506 8/20/2019 1.6.2 is deprecated because it is no longer maintained.
1.6.1 21,817 8/14/2019 1.6.1 is deprecated because it is no longer maintained.
1.6.0 81,623 7/20/2019 1.6.0 is deprecated because it is no longer maintained.
1.4.1 358,005 6/26/2019 1.4.1 is deprecated because it is no longer maintained.
1.4.0 65,340 6/20/2019 1.4.0 is deprecated because it is no longer maintained.
1.2.0 70,472 5/20/2019 1.2.0 is deprecated because it is no longer maintained.
1.1.0 85,693 4/17/2019 1.1.0 is deprecated because it is no longer maintained.
1.0.0 76,586 4/5/2019 1.0.0 is deprecated because it is no longer maintained.
0.8.2-beta 8,187 3/28/2019 0.8.2-beta is deprecated because it is no longer maintained.
0.8.1-beta 2,271 3/21/2019 0.8.1-beta is deprecated because it is no longer maintained.
0.8.0-beta 1,944 3/11/2019 0.8.0-beta is deprecated because it is no longer maintained.
0.7.1-beta 51,367 1/31/2019 0.7.1-beta is deprecated because it is no longer maintained.
0.7.0-beta 28,073 1/17/2019 0.7.0-beta is deprecated because it is no longer maintained.
0.6.0-beta 73,058 12/21/2018 0.6.0-beta is deprecated because it is no longer maintained.
0.5.2-beta 29,388 12/4/2018 0.5.2-beta is deprecated because it is no longer maintained.
0.5.1-beta 11,371 11/20/2018 0.5.1-beta is deprecated because it is no longer maintained.
0.5.0-beta 612,413 10/30/2018 0.5.0-beta is deprecated because it is no longer maintained.
0.4.1-beta 2,857 10/23/2018 0.4.1-beta is deprecated because it is no longer maintained.
0.4.0-beta 969 10/12/2018 0.4.0-beta is deprecated because it is no longer maintained.
0.3.2-beta 2,014 9/26/2018 0.3.2-beta is deprecated because it is no longer maintained.
0.3.1-beta 1,091 9/21/2018 0.3.1-beta is deprecated because it is no longer maintained.
0.3.0-beta 896 9/13/2018 0.3.0-beta is deprecated because it is no longer maintained.
0.2.4-alpha 891 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.