Datadog.Trace.BenchmarkDotNet 2.50.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Datadog.Trace.BenchmarkDotNet --version 2.50.0
NuGet\Install-Package Datadog.Trace.BenchmarkDotNet -Version 2.50.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.BenchmarkDotNet" Version="2.50.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Datadog.Trace.BenchmarkDotNet --version 2.50.0
#r "nuget: Datadog.Trace.BenchmarkDotNet, 2.50.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.BenchmarkDotNet as a Cake Addin
#addin nuget:?package=Datadog.Trace.BenchmarkDotNet&version=2.50.0

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

Datadog.Trace.BenchmarkDotNet NuGet package

This package contains the BenchmarkDotNet exporter and instrumentation for Datadog CI Visibility.

Compatibility

  • BenchmarkDotNet 0.13.2 and above

Getting Started

  1. Add the Datadog.Trace.BenchmarkDotNet NuGet package to your project, using dotnet add package Datadog.Trace.BenchmarkDotNet, for example.
  2. Configure your project to use the Datadog.Trace.BenchmarkDotNet exporter, as described below
  3. Configure your CI provider to report via the Datadog Agent or agentless, as described in the documentation
  4. Run the benchmark project and check results on Datadog CI Test Visibility.

Configure the project

There's two way to configure a benchmark project to use the Datadog's exporter:

By Attribute

Add the DatadogDiagnoser attribute to the benchmark class.

using BenchmarkDotNet.Attributes;
using Datadog.Trace.BenchmarkDotNet;

[DatadogDiagnoser]
[MemoryDiagnoser]
public class OperationBenchmark
{
    [Benchmark]
    public void Operation()
    {
        // ...
    }
}
By Configuration

Use the WithDatadog() extension method on the current project configuration:

using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Running;
using Datadog.Trace.BenchmarkDotNet;

var config = DefaultConfig.Instance
    .WithDatadog();

BenchmarkRunner.Run<OperationBenchmark>(config);

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 is compatible.  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 (1)

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

Package Downloads
TimeItSharp.Common

Command execution time meter library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.50.0 100 4/17/2024
2.49.0 127 3/18/2024
2.48.0 120 2/29/2024
2.47.0 6,944 2/14/2024
2.46.0 96 1/24/2024
2.45.0 104 1/10/2024
2.44.0 225 12/19/2023
2.43.0 253 12/5/2023
2.42.0 219 11/21/2023
2.41.0 194 11/6/2023
2.40.0 124 10/16/2023
2.39.0 133 10/11/2023
2.38.0 128 9/20/2023
2.37.0 148 8/31/2023
2.36.0 144 8/23/2023
2.35.0 143 7/31/2023
2.34.0 158 7/25/2023
2.33.0 249 7/4/2023
2.32.0 166 6/20/2023
2.31.0 171 5/31/2023
2.30.0 179 5/5/2023
2.29.0 205 4/17/2023
2.28.0 209 4/12/2023
2.27.0 238 3/24/2023
2.26.0 259 3/9/2023
2.24.1 268 2/27/2023
2.24.0 276 2/24/2023

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.