Skip to content

[Debugger] Log over-length identifier redaction at Warning instead of Error#8853

Merged
NachoEchevarria merged 2 commits into
masterfrom
nacho/IdentifierLengthError
Jun 30, 2026
Merged

[Debugger] Log over-length identifier redaction at Warning instead of Error#8853
NachoEchevarria merged 2 commits into
masterfrom
nacho/IdentifierLengthError

Conversation

@NachoEchevarria

@NachoEchevarria NachoEchevarria commented Jun 30, 2026

Copy link
Copy Markdown
Collaborator

Summary of changes

Lower the severity of the "identifier length exceeds maximum allowed length" log in Redaction.TryNormalize from Log.Error to Log.Warning, and strip a stray UTF-8 BOM from the top of Redaction.cs to match the repo's charset = utf-8 convention.

Reason for change

This message fires on the Dynamic Instrumentation snapshot-redaction path whenever a customer field/property name exceeds MaxStackAlloc (512 chars). It is an expected, controlled situation driven by customer data — not a tracer bug — yet because it was logged at Error it surfaced in Error Tracking as noise:

Error Tracking issue

Implementation details

  • Log.Error(...)Log.Warning(...) in Redaction.TryNormalize.
  • Removed the UTF-8 BOM from line 1 of Redaction.cs (the file was one of the few .cs files still carrying one).

Test coverage

Log-severity-only change; no behavioral change and no new tests required.

Other details

N/A

@github-actions github-actions Bot added area:tracer The core tracer library (Datadog.Trace, does not include OpenTracing, native code, or integrations) area:debugger labels Jun 30, 2026
@dd-trace-dotnet-ci-bot

dd-trace-dotnet-ci-bot Bot commented Jun 30, 2026

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8853) 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
duration69.30 ± (69.33 - 69.61) ms70.05 ± (70.01 - 70.29) ms+1.1%✅⬆️
.NET Framework 4.8 - Bailout
duration73.49 ± (73.24 - 73.59) ms74.21 ± (74.00 - 74.35) ms+1.0%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1077.37 ± (1077.33 - 1083.53) ms1079.00 ± (1078.99 - 1085.37) ms+0.2%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms22.08 ± (22.04 - 22.12) ms22.17 ± (22.13 - 22.21) ms+0.4%✅⬆️
process.time_to_main_ms80.22 ± (80.08 - 80.36) ms80.63 ± (80.46 - 80.79) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.93 ± (10.93 - 10.93) MB10.93 ± (10.92 - 10.93) MB-0.0%
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms21.99 ± (21.96 - 22.01) ms21.95 ± (21.92 - 21.97) ms-0.2%
process.time_to_main_ms81.39 ± (81.26 - 81.52) ms81.75 ± (81.63 - 81.88) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.97 ± (10.97 - 10.98) MB10.98 ± (10.97 - 10.98) MB+0.1%✅⬆️
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms209.05 ± (208.05 - 210.06) ms210.35 ± (209.31 - 211.39) ms+0.6%✅⬆️
process.time_to_main_ms529.44 ± (528.28 - 530.61) ms532.98 ± (531.51 - 534.45) ms+0.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.76 ± (48.72 - 48.81) MB48.78 ± (48.73 - 48.82) MB+0.0%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.4%
.NET 6 - Baseline
process.internal_duration_ms20.83 ± (20.81 - 20.86) ms20.88 ± (20.85 - 20.92) ms+0.2%✅⬆️
process.time_to_main_ms69.88 ± (69.76 - 70.01) ms69.92 ± (69.77 - 70.07) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.62 ± (10.61 - 10.62) MB10.64 ± (10.64 - 10.65) MB+0.3%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.80 ± (20.77 - 20.83) ms20.96 ± (20.93 - 20.98) ms+0.7%✅⬆️
process.time_to_main_ms70.71 ± (70.58 - 70.83) ms70.77 ± (70.68 - 70.85) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.72 ± (10.71 - 10.72) MB10.76 ± (10.75 - 10.76) MB+0.4%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms370.16 ± (368.12 - 372.20) ms369.38 ± (367.43 - 371.33) ms-0.2%
process.time_to_main_ms535.42 ± (534.34 - 536.50) ms535.39 ± (534.18 - 536.61) ms-0.0%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed50.20 ± (50.18 - 50.22) MB50.10 ± (50.07 - 50.12) MB-0.2%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.1%
.NET 8 - Baseline
process.internal_duration_ms19.32 ± (19.27 - 19.36) ms19.34 ± (19.30 - 19.39) ms+0.1%✅⬆️
process.time_to_main_ms70.82 ± (70.59 - 71.05) ms71.13 ± (70.86 - 71.40) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.68 ± (7.67 - 7.69) MB7.68 ± (7.68 - 7.69) MB+0.0%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.27 ± (19.23 - 19.30) ms19.30 ± (19.25 - 19.34) ms+0.2%✅⬆️
process.time_to_main_ms71.64 ± (71.46 - 71.82) ms72.21 ± (71.96 - 72.47) ms+0.8%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.74 ± (7.73 - 7.74) MB7.73 ± (7.72 - 7.73) MB-0.1%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms298.21 ± (295.77 - 300.65) ms298.03 ± (295.85 - 300.21) ms-0.1%
process.time_to_main_ms482.79 ± (481.96 - 483.61) ms485.57 ± (484.41 - 486.74) ms+0.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed37.09 ± (37.06 - 37.12) MB37.20 ± (37.17 - 37.22) MB+0.3%✅⬆️
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)-0.5%

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration204.15 ± (203.85 - 204.73) ms206.03 ± (205.87 - 206.83) ms+0.9%✅⬆️
.NET Framework 4.8 - Bailout
duration207.15 ± (206.70 - 207.57) ms209.41 ± (209.04 - 209.99) ms+1.1%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1210.32 ± (1207.81 - 1214.20) ms1216.14 ± (1216.05 - 1222.75) ms+0.5%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms196.14 ± (195.74 - 196.53) ms196.84 ± (196.51 - 197.17) ms+0.4%✅⬆️
process.time_to_main_ms85.29 ± (85.00 - 85.57) ms86.16 ± (85.91 - 86.41) ms+1.0%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.02 ± (15.99 - 16.04) MB16.03 ± (16.01 - 16.06) MB+0.1%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.1%
.NET Core 3.1 - Bailout
process.internal_duration_ms194.52 ± (194.14 - 194.90) ms198.93 ± (198.52 - 199.34) ms+2.3%✅⬆️
process.time_to_main_ms86.04 ± (85.77 - 86.30) ms88.02 ± (87.76 - 88.28) ms+2.3%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.08 ± (16.06 - 16.11) MB16.08 ± (16.05 - 16.11) MB+0.0%✅⬆️
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (21 - 21)-0.1%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms390.18 ± (388.50 - 391.86) ms393.20 ± (392.09 - 394.31) ms+0.8%✅⬆️
process.time_to_main_ms542.06 ± (540.59 - 543.52) ms550.83 ± (549.56 - 552.11) ms+1.6%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed58.26 ± (58.04 - 58.47) MB58.77 ± (58.61 - 58.93) MB+0.9%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)+0.7%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms202.08 ± (201.74 - 202.43) ms204.77 ± (204.39 - 205.15) ms+1.3%✅⬆️
process.time_to_main_ms74.19 ± (73.98 - 74.39) ms76.21 ± (75.92 - 76.49) ms+2.7%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.36 ± (16.34 - 16.38) MB16.36 ± (16.33 - 16.39) MB-0.0%
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 20)+1.5%✅⬆️
.NET 6 - Bailout
process.internal_duration_ms200.07 ± (199.65 - 200.48) ms202.68 ± (202.28 - 203.09) ms+1.3%✅⬆️
process.time_to_main_ms75.15 ± (74.93 - 75.36) ms76.53 ± (76.32 - 76.73) ms+1.8%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.43 ± (16.40 - 16.46) MB16.44 ± (16.41 - 16.46) MB+0.0%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+0.4%✅⬆️
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms582.09 ± (579.65 - 584.52) ms585.07 ± (581.33 - 588.81) ms+0.5%✅⬆️
process.time_to_main_ms557.00 ± (555.88 - 558.11) ms559.67 ± (558.29 - 561.04) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.30 ± (61.21 - 61.38) MB61.36 ± (61.26 - 61.47) MB+0.1%✅⬆️
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)-0.1%
.NET 8 - Baseline
process.internal_duration_ms200.19 ± (199.80 - 200.58) ms202.10 ± (201.67 - 202.52) ms+1.0%✅⬆️
process.time_to_main_ms73.94 ± (73.64 - 74.25) ms74.83 ± (74.57 - 75.08) ms+1.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.70 ± (11.68 - 11.73) MB11.71 ± (11.68 - 11.73) MB+0.0%✅⬆️
runtime.dotnet.threads.count18 ± (18 - 18)18 ± (18 - 18)+0.0%✅⬆️
.NET 8 - Bailout
process.internal_duration_ms201.09 ± (200.60 - 201.58) ms200.29 ± (199.93 - 200.65) ms-0.4%
process.time_to_main_ms75.47 ± (75.28 - 75.65) ms75.35 ± (75.17 - 75.54) ms-0.1%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.77 ± (11.75 - 11.80) MB11.79 ± (11.77 - 11.80) MB+0.1%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 20)19 ± (19 - 20)+0.2%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms516.88 ± (513.84 - 519.91) ms515.57 ± (512.54 - 518.60) ms-0.3%
process.time_to_main_ms506.45 ± (505.65 - 507.26) ms507.37 ± (506.49 - 508.26) ms+0.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed50.99 ± (50.95 - 51.03) MB50.94 ± (50.90 - 50.98) MB-0.1%
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (29 - 30)-0.3%
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 (8853) - mean (70ms)  : 68, 72
    master - mean (69ms)  : 67, 71

    section Bailout
    This PR (8853) - mean (74ms)  : 72, 76
    master - mean (73ms)  : 72, 75

    section CallTarget+Inlining+NGEN
    This PR (8853) - mean (1,082ms)  : 1035, 1129
    master - mean (1,080ms)  : 1036, 1125

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 (8853) - mean (109ms)  : 107, 112
    master - mean (109ms)  : 106, 111

    section Bailout
    This PR (8853) - mean (110ms)  : 108, 112
    master - mean (110ms)  : 108, 112

    section CallTarget+Inlining+NGEN
    This PR (8853) - mean (783ms)  : 764, 802
    master - mean (777ms)  : 755, 799

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8853) - mean (97ms)  : 93, 100
    master - mean (97ms)  : 94, 99

    section Bailout
    This PR (8853) - mean (98ms)  : 96, 100
    master - mean (97ms)  : 95, 99

    section CallTarget+Inlining+NGEN
    This PR (8853) - mean (935ms)  : 894, 976
    master - mean (937ms)  : 899, 975

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8853) - mean (98ms)  : 92, 104
    master - mean (98ms)  : 93, 104

    section Bailout
    This PR (8853) - mean (99ms)  : 93, 104
    master - mean (99ms)  : 95, 103

    section CallTarget+Inlining+NGEN
    This PR (8853) - mean (816ms)  : 770, 861
    master - mean (812ms)  : 770, 855

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 (8853) - mean (206ms)  : 201, 212
    master - mean (204ms)  : 199, 209

    section Bailout
    This PR (8853) - mean (210ms)  : 205, 214
    master - mean (207ms)  : 203, 212

    section CallTarget+Inlining+NGEN
    This PR (8853) - mean (1,219ms)  : 1169, 1270
    master - mean (1,211ms)  : 1168, 1254

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 (8853) - mean (293ms)  : 289, 297
    master - mean (291ms)  : 286, 296

    section Bailout
    This PR (8853) - mean (297ms)  : 291, 302
    master - mean (290ms)  : 285, 296

    section CallTarget+Inlining+NGEN
    This PR (8853) - mean (987ms)  : 963, 1010
    master - mean (974ms)  : 954, 993

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8853) - mean (291ms)  : 284, 298
    master - mean (286ms)  : 281, 291

    section Bailout
    This PR (8853) - mean (289ms)  : 283, 294
    master - mean (285ms)  : 278, 291

    section CallTarget+Inlining+NGEN
    This PR (8853) - mean (1,176ms)  : 1134, 1219
    master - mean (1,173ms)  : 1130, 1216

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8853) - mean (288ms)  : 282, 294
    master - mean (285ms)  : 280, 289

    section Bailout
    This PR (8853) - mean (286ms)  : 281, 291
    master - mean (287ms)  : 280, 294

    section CallTarget+Inlining+NGEN
    This PR (8853) - mean (1,055ms)  : 1004, 1107
    master - mean (1,054ms)  : 1007, 1102

Loading

@pr-commenter

pr-commenter Bot commented Jun 30, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-06-30 14:08:20

Comparing candidate commit 10bf1a8 in PR branch nacho/IdentifierLengthError with baseline commit f0fbab0 in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 0 performance regressions! Performance is the same for 72 metrics, 0 unstable metrics, 61 known flaky benchmarks, 65 flaky benchmarks without significant changes.

Explanation

This is an A/B test comparing a candidate commit's performance against that of a baseline commit. Performance changes are noted in the tables below as:

  • 🟩 = significantly better candidate vs. baseline
  • 🟥 = significantly worse candidate vs. baseline

We compute a confidence interval (CI) over the relative difference of means between metrics from the candidate and baseline commits, considering the baseline as the reference.

If the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD), the change is considered significant.

Feel free to reach out to #apm-benchmarking-platform on Slack if you have any questions.

More details about the CI and significant changes

You can imagine this CI as a range of values that is likely to contain the true difference of means between the candidate and baseline commits.

CIs of the difference of means are often centered around 0%, because often changes are not that big:

---------------------------------(------|---^--------)-------------------------------->
                              -0.6%    0%  0.3%     +1.2%
                                 |          |        |
         lower bound of the CI --'          |        |
sample mean (center of the CI) -------------'        |
         upper bound of the CI ----------------------'

As described above, a change is considered significant if the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD).

For instance, for an execution time metric, this confidence interval indicates a significantly worse performance:

----------------------------------------|---------|---(---------^---------)---------->
                                       0%        1%  1.3%      2.2%      3.1%
                                                  |   |         |         |
       significant impact threshold --------------'   |         |         |
                      lower bound of CI --------------'         |         |
       sample mean (center of the CI) --------------------------'         |
                      upper bound of CI ----------------------------------'

Known flaky benchmarks

These benchmarks are marked as flaky and will not trigger a failure. Modify FLAKY_BENCHMARKS_REGEX to control which benchmarks are marked as flaky.

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net472

  • 🟥 throughput [-6744.784op/s; -6294.227op/s] or [-7.997%; -7.463%]

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild netcoreapp3.1

  • 🟥 throughput [-7506.735op/s; -6154.697op/s] or [-7.633%; -6.258%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+302.131ms; +308.870ms] or [+149.928%; +153.272%]
  • 🟥 throughput [-46.484op/s; -42.692op/s] or [-8.363%; -7.681%]

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

  • 🟥 execution_time [+382.514ms; +383.494ms] or [+302.210%; +302.984%]
  • 🟩 throughput [+88.461op/s; +90.166op/s] or [+11.663%; +11.888%]

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

  • 🟥 execution_time [+395.094ms; +398.333ms] or [+349.643%; +352.510%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody net472

  • 🟥 allocated_mem [+1.308KB; +1.308KB] or [+27.528%; +27.540%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody net6.0

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+9.976%; +9.987%]
  • 🟩 execution_time [-16.580ms; -12.412ms] or [-7.743%; -5.797%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody netcoreapp3.1

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+27.500%; +27.510%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody net472

  • 🟥 allocated_mem [+1.307KB; +1.307KB] or [+105.743%; +105.758%]
  • 🟥 throughput [-270877.556op/s; -267684.382op/s] or [-27.658%; -27.332%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody net6.0

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+38.557%; +38.566%]
  • 🟩 execution_time [-26.134ms; -21.271ms] or [-11.655%; -9.486%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody netcoreapp3.1

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+105.288%; +105.304%]
  • 🟥 throughput [-152873.267op/s; -136410.880op/s] or [-21.965%; -19.600%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody netcoreapp3.1

  • 🟩 throughput [+9993.641op/s; +12630.429op/s] or [+7.961%; +10.062%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net6.0

  • 🟩 throughput [+421549.120op/s; +440011.731op/s] or [+14.056%; +14.672%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody netcoreapp3.1

  • 🟩 execution_time [-18.654ms; -14.218ms] or [-8.599%; -6.554%]
  • 🟩 throughput [+159977.311op/s; +218425.779op/s] or [+6.350%; +8.670%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs net472

  • 🟥 execution_time [+299.803ms; +300.658ms] or [+149.802%; +150.229%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs net6.0

  • 🟥 execution_time [+300.757ms; +304.193ms] or [+151.672%; +153.405%]
  • 🟩 throughput [+672.587op/s; +886.910op/s] or [+5.144%; +6.784%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs netcoreapp3.1

  • 🟥 execution_time [+299.525ms; +301.924ms] or [+150.877%; +152.086%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs net472

  • 🟥 execution_time [+295.240ms; +296.408ms] or [+145.010%; +145.584%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs net6.0

  • 🟥 execution_time [+292.824ms; +296.044ms] or [+143.151%; +144.725%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs netcoreapp3.1

  • 🟥 execution_time [+304.341ms; +307.120ms] or [+152.109%; +153.498%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net6.0

  • 🟥 execution_time [+22.645µs; +46.296µs] or [+7.229%; +14.780%]
  • 🟥 throughput [-430.934op/s; -231.922op/s] or [-13.433%; -7.230%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+299.914ms; +300.665ms] or [+149.688%; +150.063%]

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

  • unstable execution_time [+248.824ms; +334.743ms] or [+270.357%; +363.712%]
  • 🟩 throughput [+624.156op/s; +870.434op/s] or [+5.129%; +7.152%]

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

  • unstable execution_time [+203.206ms; +266.022ms] or [+154.292%; +201.988%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • unstable execution_time [+320.463ms; +367.535ms] or [+147.346%; +168.989%]
  • 🟥 throughput [-528.143op/s; -481.680op/s] or [-47.855%; -43.645%]

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

  • unstable execution_time [+204.924ms; +338.274ms] or [+87.330%; +144.158%]
  • 🟥 throughput [-674.928op/s; -591.317op/s] or [-45.018%; -39.441%]

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

  • 🟥 execution_time [+324.988ms; +339.207ms] or [+194.380%; +202.885%]
  • 🟥 throughput [-383.029op/s; -347.357op/s] or [-26.670%; -24.186%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool netcoreapp3.1

  • unstable execution_time [-195.853µs; +1.358µs] or [-10.493%; +0.073%]
  • unstable throughput [+11.065op/s; +137.724op/s] or [+2.065%; +25.707%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice netcoreapp3.1

  • 🟩 execution_time [-629.125µs; -243.719µs] or [-15.954%; -6.181%]
  • unstable throughput [+23.767op/s; +75.613op/s] or [+9.372%; +29.817%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+303.303ms; +304.942ms] or [+152.737%; +153.563%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net6.0

  • 🟥 execution_time [+301.472ms; +304.334ms] or [+151.068%; +152.502%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch netcoreapp3.1

  • 🟥 execution_time [+303.389ms; +306.961ms] or [+152.410%; +154.204%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+303.944ms; +306.557ms] or [+152.630%; +153.943%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net6.0

  • 🟥 execution_time [+298.687ms; +315.550ms] or [+147.688%; +156.026%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync netcoreapp3.1

  • 🟥 execution_time [+302.161ms; +306.048ms] or [+153.148%; +155.119%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+301.185ms; +302.975ms] or [+151.168%; +152.066%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net6.0

  • 🟥 execution_time [+297.248ms; +306.600ms] or [+148.151%; +152.812%]
  • 🟩 throughput [+40578.696op/s; +51647.713op/s] or [+8.058%; +10.256%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync netcoreapp3.1

  • 🟥 execution_time [+302.884ms; +305.994ms] or [+150.682%; +152.229%]

scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net6.0

  • 🟩 execution_time [-16.037ms; -12.384ms] or [-7.457%; -5.759%]
  • 🟩 throughput [+21768.600op/s; +28955.838op/s] or [+5.972%; +7.943%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark net472

  • unstable execution_time [+4.473µs; +49.750µs] or [+1.105%; +12.289%]

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

  • 🟩 allocated_mem [-18.846KB; -18.822KB] or [-6.875%; -6.866%]
  • unstable execution_time [-16.960µs; +39.679µs] or [-3.352%; +7.842%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark netcoreapp3.1

  • unstable execution_time [-49.319µs; +12.794µs] or [-8.547%; +2.217%]

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

  • unstable execution_time [+7.684µs; +12.362µs] or [+18.163%; +29.221%]
  • 🟥 throughput [-5407.081op/s; -3484.648op/s] or [-22.762%; -14.669%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark netcoreapp3.1

  • unstable execution_time [-12.820µs; -4.518µs] or [-19.890%; -7.009%]
  • unstable throughput [+1099.392op/s; +2885.858op/s] or [+6.745%; +17.706%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+303.495ms; +304.853ms] or [+153.403%; +154.089%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net6.0

  • 🟥 execution_time [+303.422ms; +308.462ms] or [+154.441%; +157.006%]

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

  • 🟥 execution_time [+300.364ms; +302.817ms] or [+150.369%; +151.598%]

scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net6.0

  • 🟩 throughput [+36266.347op/s; +39974.742op/s] or [+6.864%; +7.566%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+298.623ms; +300.416ms] or [+148.837%; +149.730%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net6.0

  • 🟥 execution_time [+300.658ms; +302.672ms] or [+150.976%; +151.988%]

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

  • 🟥 execution_time [+301.417ms; +304.024ms] or [+152.859%; +154.181%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+299.192ms; +299.965ms] or [+149.239%; +149.624%]
  • 🟩 throughput [+61260335.477op/s; +61563166.535op/s] or [+44.614%; +44.834%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net6.0

  • 🟥 execution_time [+415.078ms; +419.848ms] or [+516.223%; +522.155%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore netcoreapp3.1

  • 🟥 execution_time [+298.636ms; +299.654ms] or [+148.953%; +149.461%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net6.0

  • 🟩 throughput [+92261.584op/s; +105683.384op/s] or [+8.614%; +9.867%]

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

  • 🟩 throughput [+55108.171op/s; +74423.983op/s] or [+6.379%; +8.614%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net6.0

  • 🟩 throughput [+93742.652op/s; +123282.462op/s] or [+7.256%; +9.542%]

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

  • 🟩 throughput [+85657.289op/s; +93575.304op/s] or [+8.507%; +9.294%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net6.0

  • 🟩 throughput [+50223.201op/s; +56147.904op/s] or [+9.120%; +10.195%]

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

  • 🟩 throughput [+23531.194op/s; +33494.742op/s] or [+5.267%; +7.497%]

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

  • 🟩 throughput [+79220.899op/s; +98247.103op/s] or [+8.851%; +10.977%]

Known flaky benchmarks without significant changes:

  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark netcoreapp3.1
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net6.0
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net472
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog netcoreapp3.1
  • scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive netcoreapp3.1
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin netcoreapp3.1

@NachoEchevarria NachoEchevarria changed the title Warning instead of error [Debugger] Log over-length identifier redaction at Warning instead of Error Jun 30, 2026
@NachoEchevarria
NachoEchevarria marked this pull request as ready for review June 30, 2026 13:06
@NachoEchevarria
NachoEchevarria requested a review from a team as a code owner June 30, 2026 13:06
if (identifier.Length > MaxStackAlloc)
{
Log.Error("Identifier length {Length} exceeds maximum allowed length of {MaxSize}, hence we are going to redact this identifier", identifier.Length, property1: MaxStackAlloc);
Log.Warning("Identifier length {Length} exceeds maximum allowed length of {MaxSize}, hence we are going to redact this identifier", identifier.Length, property1: MaxStackAlloc);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Is the message even correct here? 🤔 Should it say "hence we are not going to redact this identifier"?

I could be wrong, but as far as I can see, if identifier.Length > MaxStackAlloc

  • TryNormalize returns false
  • CheckForRedactedKeyword returns false
  • IsRedactedKeyword returns false
  • ShouldRedact returns false

?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Yes, the message is incorrect. I was thinking about changing it, probably it would be better to do it.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Fixed!

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Thanks! As long as @dudikeleti confirms anyway! 😄

@dudikeleti dudikeleti left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Thanks

@NachoEchevarria
NachoEchevarria merged commit a2346ba into master Jun 30, 2026
143 checks passed
@NachoEchevarria
NachoEchevarria deleted the nacho/IdentifierLengthError branch June 30, 2026 14:56
@github-actions github-actions Bot added this to the vNext-v3 milestone Jun 30, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:debugger 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.

3 participants