Skip to content

Fix TypeLoadException exception error#8157

Merged
NachoEchevarria merged 1 commit intomasterfrom
nacho/TypeLoadExceptionFix
Feb 6, 2026
Merged

Fix TypeLoadException exception error#8157
NachoEchevarria merged 1 commit intomasterfrom
nacho/TypeLoadExceptionFix

Conversation

@NachoEchevarria
Copy link
Collaborator

@NachoEchevarria NachoEchevarria commented Feb 4, 2026

Summary of changes

Fixes TypeLoadException being logged as an error during tracer initialization on .NET Framework when System.Web.Hosting.HostingEnvironment is unavailable.

Reason for change

On .NET Framework 4.x, users were seeing this error during startup:

Error: Unable to get application name through ASP.NET settings
System.TypeLoadException
   at Datadog.Trace.PlatformHelpers.ApplicationNameHelpers.TryLoadAspNetSiteName(String& siteName)
   at Datadog.Trace.PlatformHelpers.ApplicationNameHelpers.GetApplicationName(TracerSettings settings)

Root Cause

The existing code had a try-catch block inside TryLoadAspNetSiteName to catch TypeLoadException, but the exception was thrown during JIT compilation of the method, not during execution. When the JIT compiler encountered System.Web.Hosting.HostingEnvironment references, it threw TypeLoadException before any code in the method could execute - so the inner catch block was never reached.

Implementation details

Extracted the System.Web-dependent code into a separate method marked with [MethodImpl(MethodImplOptions.NoInlining)]. This:

  1. Defers JIT compilation of the System.Web-dependent code until the method is actually called
  2. Allows the TypeLoadException to be caught at the call site
  3. Logs a Warning (expected behavior) instead of an Error

A similar pattern is already used in SecurityCoordinator.Framework.cs:243-244.

Test coverage

Other details

@github-actions github-actions bot added the area:tracer The core tracer library (Datadog.Trace, does not include OpenTracing, native code, or integrations) label Feb 4, 2026
@pr-commenter
Copy link

pr-commenter bot commented Feb 4, 2026

Benchmarks

Benchmark execution time: 2026-02-04 17:17:07

Comparing candidate commit 483803f in PR branch nacho/TypeLoadExceptionFix with baseline commit 6717993 in branch master.

Found 8 performance improvements and 6 performance regressions! Performance is the same for 162 metrics, 16 unstable metrics.

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟩 execution_time [-109.550ms; -109.294ms] or [-52.270%; -52.147%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack netcoreapp3.1

  • 🟥 execution_time [+18.632µs; +46.120µs] or [+5.620%; +13.911%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net6.0

  • 🟩 execution_time [-104.011ms; -96.350ms] or [-52.006%; -48.175%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest netcoreapp3.1

  • 🟩 throughput [+553.640op/s; +1371.591op/s] or [+6.036%; +14.953%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+37.042ms; +41.940ms] or [+19.111%; +21.639%]
  • 🟥 throughput [-138.677op/s; -115.089op/s] or [-11.998%; -9.957%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟩 execution_time [-24.088ms; -20.406ms] or [-13.359%; -11.317%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces netcoreapp3.1

  • 🟥 execution_time [+49.412ms; +54.117ms] or [+32.081%; +35.135%]

scenario:Benchmarks.Trace.DbCommandBenchmark.ExecuteNonQuery net472

  • 🟩 throughput [+32001.578op/s; +33861.959op/s] or [+9.290%; +9.831%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net6.0

  • 🟩 throughput [+2416.193op/s; +4188.259op/s] or [+13.619%; +23.606%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog netcoreapp3.1

  • 🟩 execution_time [-45.904ms; -43.716ms] or [-22.640%; -21.561%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan netcoreapp3.1

  • 🟥 execution_time [+13.366ms; +18.799ms] or [+6.849%; +9.634%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net472

  • 🟩 throughput [+30754.499op/s; +33752.022op/s] or [+7.222%; +7.926%]

scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net6.0

  • 🟥 execution_time [+14.052ms; +20.002ms] or [+7.122%; +10.138%]

@dd-trace-dotnet-ci-bot
Copy link

dd-trace-dotnet-ci-bot bot commented Feb 4, 2026

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8157) and master.

✅ No regressions detected - check the details below

Full Metrics Comparison

FakeDbCommand

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration68.02 ± (68.01 - 68.24) ms68.16 ± (68.20 - 68.43) ms+0.2%✅⬆️
.NET Framework 4.8 - Bailout
duration71.86 ± (71.80 - 72.00) ms72.00 ± (71.95 - 72.13) ms+0.2%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1025.33 ± (1030.02 - 1038.15) ms1024.88 ± (1031.38 - 1041.24) ms-0.0%
.NET Core 3.1 - Baseline
process.internal_duration_ms22.35 ± (22.33 - 22.38) ms22.53 ± (22.50 - 22.55) ms+0.8%✅⬆️
process.time_to_main_ms86.47 ± (86.32 - 86.61) ms86.53 ± (86.38 - 86.67) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed15.51 ± (15.50 - 15.51) MB15.52 ± (15.52 - 15.53) MB+0.1%✅⬆️
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms22.34 ± (22.31 - 22.36) ms22.48 ± (22.46 - 22.51) ms+0.7%✅⬆️
process.time_to_main_ms87.63 ± (87.52 - 87.74) ms87.58 ± (87.46 - 87.69) ms-0.1%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed15.55 ± (15.55 - 15.56) MB15.55 ± (15.54 - 15.55) MB-0.0%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms254.70 ± (251.06 - 258.34) ms254.64 ± (250.96 - 258.32) ms-0.0%
process.time_to_main_ms502.75 ± (502.22 - 503.28) ms503.88 ± (503.39 - 504.37) ms+0.2%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed53.17 ± (53.14 - 53.19) MB53.27 ± (53.24 - 53.29) MB+0.2%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.0%
.NET 6 - Baseline
process.internal_duration_ms20.95 ± (20.93 - 20.97) ms20.94 ± (20.90 - 20.97) ms-0.1%
process.time_to_main_ms74.31 ± (74.20 - 74.43) ms74.47 ± (74.32 - 74.62) ms+0.2%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed15.22 ± (15.22 - 15.23) MB15.23 ± (15.23 - 15.23) MB+0.0%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.81 ± (20.78 - 20.83) ms20.92 ± (20.89 - 20.94) ms+0.5%✅⬆️
process.time_to_main_ms75.37 ± (75.31 - 75.43) ms75.58 ± (75.50 - 75.65) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed15.33 ± (15.32 - 15.33) MB15.33 ± (15.33 - 15.33) MB+0.0%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms253.21 ± (252.48 - 253.95) ms253.10 ± (252.26 - 253.94) ms-0.0%
process.time_to_main_ms479.13 ± (478.63 - 479.64) ms479.41 ± (478.78 - 480.04) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed54.00 ± (53.97 - 54.02) MB54.09 ± (54.06 - 54.12) MB+0.2%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.0%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms19.25 ± (19.23 - 19.28) ms19.24 ± (19.21 - 19.26) ms-0.1%
process.time_to_main_ms73.72 ± (73.62 - 73.83) ms74.11 ± (73.93 - 74.30) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed12.33 ± (12.32 - 12.34) MB12.27 ± (12.26 - 12.27) MB-0.5%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.18 ± (19.15 - 19.20) ms19.28 ± (19.26 - 19.31) ms+0.6%✅⬆️
process.time_to_main_ms74.90 ± (74.81 - 74.99) ms75.26 ± (75.17 - 75.35) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed12.33 ± (12.32 - 12.34) MB12.33 ± (12.32 - 12.34) MB-0.0%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms182.59 ± (181.82 - 183.36) ms184.32 ± (183.44 - 185.21) ms+0.9%✅⬆️
process.time_to_main_ms460.51 ± (460.03 - 460.99) ms462.23 ± (461.51 - 462.96) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed41.22 ± (41.19 - 41.24) MB41.22 ± (41.18 - 41.26) MB+0.0%✅⬆️
runtime.dotnet.threads.count27 ± (26 - 27)27 ± (27 - 27)+0.0%✅⬆️

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration212.41 ± (212.27 - 214.01) ms218.94 ± (218.51 - 220.76) ms+3.1%✅⬆️
.NET Framework 4.8 - Bailout
duration214.79 ± (214.88 - 216.64) ms219.69 ± (219.34 - 221.18) ms+2.3%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1220.30 ± (1219.69 - 1227.65) ms1228.23 ± (1228.87 - 1238.44) ms+0.7%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms212.41 ± (211.80 - 213.02) ms208.52 ± (208.03 - 209.01) ms-1.8%
process.time_to_main_ms99.30 ± (98.93 - 99.68) ms97.03 ± (96.73 - 97.34) ms-2.3%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed20.51 ± (20.50 - 20.53) MB20.48 ± (20.47 - 20.50) MB-0.1%
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.2%
.NET Core 3.1 - Bailout
process.internal_duration_ms213.69 ± (212.95 - 214.43) ms210.71 ± (210.13 - 211.28) ms-1.4%
process.time_to_main_ms100.83 ± (100.41 - 101.25) ms99.54 ± (99.27 - 99.81) ms-1.3%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed20.51 ± (20.50 - 20.53) MB20.52 ± (20.50 - 20.53) MB+0.0%✅⬆️
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (21 - 21)+0.5%✅⬆️
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms477.18 ± (473.73 - 480.63) ms467.45 ± (464.81 - 470.10) ms-2.0%
process.time_to_main_ms559.45 ± (558.06 - 560.84) ms549.58 ± (548.34 - 550.82) ms-1.8%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed61.82 ± (61.68 - 61.97) MB62.26 ± (62.10 - 62.43) MB+0.7%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (29 - 30)-0.2%
.NET 6 - Baseline
process.internal_duration_ms220.23 ± (218.96 - 221.49) ms214.02 ± (213.35 - 214.70) ms-2.8%
process.time_to_main_ms86.93 ± (86.55 - 87.32) ms83.73 ± (83.46 - 84.01) ms-3.7%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed20.71 ± (20.69 - 20.72) MB20.73 ± (20.71 - 20.74) MB+0.1%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.2%
.NET 6 - Bailout
process.internal_duration_ms223.44 ± (221.83 - 225.05) ms216.63 ± (216.03 - 217.23) ms-3.0%
process.time_to_main_ms89.21 ± (88.67 - 89.76) ms86.65 ± (86.33 - 86.97) ms-2.9%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed20.78 ± (20.76 - 20.81) MB20.81 ± (20.79 - 20.82) MB+0.1%✅⬆️
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (21 - 21)-0.4%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms503.47 ± (497.76 - 509.18) ms490.27 ± (488.14 - 492.41) ms-2.6%
process.time_to_main_ms530.62 ± (528.51 - 532.73) ms519.65 ± (518.49 - 520.80) ms-2.1%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed62.40 ± (62.29 - 62.51) MB62.34 ± (62.26 - 62.43) MB-0.1%
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)-0.1%
.NET 8 - Baseline
process.internal_duration_ms213.92 ± (213.23 - 214.62) ms213.09 ± (212.44 - 213.73) ms-0.4%
process.time_to_main_ms83.59 ± (83.28 - 83.90) ms83.34 ± (83.07 - 83.60) ms-0.3%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.12 ± (16.10 - 16.13) MB16.10 ± (16.08 - 16.11) MB-0.1%
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)-0.1%
.NET 8 - Bailout
process.internal_duration_ms213.78 ± (212.91 - 214.64) ms214.34 ± (213.61 - 215.06) ms+0.3%✅⬆️
process.time_to_main_ms85.03 ± (84.74 - 85.32) ms85.47 ± (85.22 - 85.72) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.17 ± (16.16 - 16.19) MB16.11 ± (16.09 - 16.12) MB-0.4%
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.1%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms478.84 ± (472.10 - 485.57) ms486.60 ± (481.40 - 491.80) ms+1.6%✅⬆️
process.time_to_main_ms508.18 ± (506.70 - 509.66) ms503.98 ± (502.70 - 505.26) ms-0.8%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed55.10 ± (55.07 - 55.13) MB55.13 ± (55.10 - 55.16) MB+0.1%✅⬆️
runtime.dotnet.threads.count29 ± (29 - 29)29 ± (29 - 29)+0.6%✅⬆️
Comparison explanation

Execution-time benchmarks measure the whole time it takes to execute a program, and are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are highlighted in **red**. The following thresholds were used for comparing the execution times:

  • Welch test with statistical test for significance of 5%
  • Only results indicating a difference greater than 5% and 5 ms are considered.

Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard.

Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph).

Duration charts
FakeDbCommand (.NET Framework 4.8)
gantt
    title Execution time (ms) FakeDbCommand (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8157) - mean (68ms)  : 67, 70
    master - mean (68ms)  : 67, 70

    section Bailout
    This PR (8157) - mean (72ms)  : 71, 73
    master - mean (72ms)  : 71, 73

    section CallTarget+Inlining+NGEN
    This PR (8157) - mean (1,036ms)  : 965, 1108
    master - mean (1,034ms)  : 975, 1093

Loading
FakeDbCommand (.NET Core 3.1)
gantt
    title Execution time (ms) FakeDbCommand (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8157) - mean (115ms)  : 113, 117
    master - mean (115ms)  : 112, 118

    section Bailout
    This PR (8157) - mean (116ms)  : 115, 117
    master - mean (116ms)  : 114, 117

    section CallTarget+Inlining+NGEN
    This PR (8157) - mean (795ms)  : 738, 852
    master - mean (792ms)  : 739, 846

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8157) - mean (101ms)  : 98, 104
    master - mean (101ms)  : 98, 103

    section Bailout
    This PR (8157) - mean (102ms)  : 100, 103
    master - mean (101ms)  : 100, 102

    section CallTarget+Inlining+NGEN
    This PR (8157) - mean (771ms)  : 750, 791
    master - mean (768ms)  : 749, 787

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8157) - mean (100ms)  : 98, 102
    master - mean (99ms)  : 97, 101

    section Bailout
    This PR (8157) - mean (101ms)  : 100, 102
    master - mean (100ms)  : 99, 102

    section CallTarget+Inlining+NGEN
    This PR (8157) - mean (687ms)  : 672, 703
    master - mean (675ms)  : 655, 694

Loading
HttpMessageHandler (.NET Framework 4.8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8157) - mean (220ms)  : 202, 237
    master - mean (213ms)  : 200, 226

    section Bailout
    This PR (8157) - mean (220ms)  : 207, 234
    master - mean (216ms)  : 203, 229

    section CallTarget+Inlining+NGEN
    This PR (8157) - mean (1,234ms)  : 1161, 1307
    master - mean (1,224ms)  : 1165, 1283

Loading
HttpMessageHandler (.NET Core 3.1)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8157) - mean (316ms)  : 304, 328
    master - mean (323ms)  : 312, 334

    section Bailout
    This PR (8157) - mean (321ms)  : 311, 331
    master - mean (325ms)  : 312, 339

    section CallTarget+Inlining+NGEN
    This PR (8157) - mean (1,057ms)  : 1007, 1107
    master - mean (1,081ms)  : 1014, 1148

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8157) - mean (308ms)  : 296, 319
    master - mean (318ms)  : 293, 343

    section Bailout
    This PR (8157) - mean (314ms)  : 297, 331
    master - mean (324ms)  : 292, 356

    section CallTarget+Inlining+NGEN
    This PR (8157) - mean (1,050ms)  : 1002, 1097
    master - mean (1,088ms)  : 972, 1203

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8157) - mean (309ms)  : 297, 320
    master - mean (309ms)  : 294, 324

    section Bailout
    This PR (8157) - mean (311ms)  : 295, 328
    master - mean (310ms)  : 293, 326

    section CallTarget+Inlining+NGEN
    This PR (8157) - mean (1,016ms)  : 893, 1138
    master - mean (1,020ms)  : 890, 1150

Loading

@NachoEchevarria NachoEchevarria marked this pull request as ready for review February 5, 2026 16:07
@NachoEchevarria NachoEchevarria requested a review from a team as a code owner February 5, 2026 16:07
Copy link
Member

@andrewlock andrewlock left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, thanks!

@NachoEchevarria NachoEchevarria merged commit c0dad86 into master Feb 6, 2026
145 checks passed
@NachoEchevarria NachoEchevarria deleted the nacho/TypeLoadExceptionFix branch February 6, 2026 10:05
@github-actions github-actions bot added this to the vNext-v3 milestone Feb 6, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:tracer The core tracer library (Datadog.Trace, does not include OpenTracing, native code, or integrations) identified-by:telemetry

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants