Skip to content

[Configuration] Enforce sensitive configuration redaction at compile time - #8976

Draft
bm1549 wants to merge 7 commits into
masterfrom
brian.marks/sensitive-config-analyzer
Draft

[Configuration] Enforce sensitive configuration redaction at compile time#8976
bm1549 wants to merge 7 commits into
masterfrom
brian.marks/sensitive-config-analyzer

Conversation

@bm1549

@bm1549 bm1549 commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Summary of changes

Adds sensitive metadata to supported-configurations.yaml and enforces redacted reads with Roslyn diagnostics. Marks DD_API_KEY and the four OTLP header settings as sensitive, then migrates their runtime reads to redacted string or dictionary accessors.

Reason for change

Configuration telemetry must not record credential-bearing values. The runtime lookup proposed in #8763 would add work to tracer startup, so this draft implements the YAML-driven compile-time approach discussed there.

Implementation details

  • Extends the shared YAML reader with a strict sensitive boolean.
  • Adds DD0015 for unsafe sensitive-key reads and DD0016 when sensitivity metadata cannot be loaded safely.
  • Supplies the YAML registry to every analyzer consumer under tracer/src.
  • Preserves OTLP string, alias, and JSON dictionary parsing while forcing telemetry redaction.
  • Adds no runtime sensitivity registry or key lookup.

Test coverage

  • Source generators: 86 passed.
  • Analyzers: 1,098 passed, 1 existing skip.
  • Affected tracer settings: 471 passed, 1 existing skip.
  • Datadog.Trace.Tools.Runner build passed.
  • Datadog.Trace built for net461, netstandard2.0, netcoreapp3.1, and net6.0 with 0 warnings and 0 errors.
  • git diff --check master...HEAD passed.

Other details

This is a separate draft implementation of the maintainer direction from #8763.

@bm1549 bm1549 added the AI Generated Largely based on code generated by an AI or LLM. This label is the same across all dd-trace-* repos label Jul 31, 2026
@dd-trace-dotnet-ci-bot

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8976) 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
duration71.83 ± (71.79 - 72.13) ms74.31 ± (73.95 - 74.59) ms+3.5%✅⬆️
.NET Framework 4.8 - Bailout
duration80.27 ± (80.46 - 81.58) ms76.67 ± (76.79 - 77.30) ms-4.5%
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1094.89 ± (1093.39 - 1099.55) ms1086.12 ± (1086.14 - 1091.65) ms-0.8%
.NET Core 3.1 - Baseline
process.internal_duration_ms22.40 ± (22.35 - 22.45) ms22.41 ± (22.36 - 22.46) ms+0.1%✅⬆️
process.time_to_main_ms84.76 ± (84.47 - 85.06) ms83.33 ± (83.08 - 83.58) ms-1.7%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed11.03 ± (11.03 - 11.04) MB11.01 ± (11.00 - 11.01) MB-0.2%
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms22.33 ± (22.29 - 22.37) ms22.17 ± (22.15 - 22.19) ms-0.7%
process.time_to_main_ms85.28 ± (85.01 - 85.56) ms82.63 ± (82.47 - 82.78) ms-3.1%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed11.06 ± (11.06 - 11.07) MB11.05 ± (11.04 - 11.05) MB-0.2%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms210.28 ± (209.34 - 211.21) ms209.74 ± (208.79 - 210.69) ms-0.3%
process.time_to_main_ms538.93 ± (537.63 - 540.23) ms539.35 ± (538.12 - 540.59) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed49.64 ± (49.60 - 49.67) MB49.48 ± (49.45 - 49.52) MB-0.3%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.6%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms21.25 ± (21.20 - 21.30) ms21.07 ± (21.03 - 21.11) ms-0.8%
process.time_to_main_ms74.78 ± (74.49 - 75.07) ms73.08 ± (72.85 - 73.32) ms-2.3%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.72 ± (10.72 - 10.73) MB10.72 ± (10.72 - 10.72) MB-0.0%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.82 ± (20.79 - 20.86) ms20.78 ± (20.75 - 20.81) ms-0.2%
process.time_to_main_ms72.52 ± (72.35 - 72.69) ms72.39 ± (72.23 - 72.54) ms-0.2%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.83 ± (10.83 - 10.84) MB10.85 ± (10.84 - 10.85) MB+0.1%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms371.98 ± (369.86 - 374.09) ms368.98 ± (366.90 - 371.06) ms-0.8%
process.time_to_main_ms546.78 ± (545.59 - 547.96) ms544.89 ± (543.75 - 546.02) ms-0.3%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed50.65 ± (50.63 - 50.68) MB50.52 ± (50.50 - 50.54) MB-0.3%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.1%
.NET 8 - Baseline
process.internal_duration_ms19.21 ± (19.17 - 19.25) ms19.04 ± (19.01 - 19.06) ms-0.9%
process.time_to_main_ms71.47 ± (71.20 - 71.74) ms70.30 ± (70.14 - 70.46) ms-1.6%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.76 ± (7.76 - 7.76) MB7.77 ± (7.77 - 7.78) MB+0.2%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.44 ± (19.40 - 19.49) ms19.41 ± (19.37 - 19.45) ms-0.1%
process.time_to_main_ms74.88 ± (74.62 - 75.13) ms74.90 ± (74.67 - 75.13) ms+0.0%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.83 ± (7.82 - 7.84) MB7.82 ± (7.82 - 7.83) MB-0.1%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms296.66 ± (294.51 - 298.81) ms294.84 ± (292.46 - 297.22) ms-0.6%
process.time_to_main_ms492.46 ± (491.49 - 493.44) ms493.61 ± (492.64 - 494.58) ms+0.2%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed38.07 ± (38.04 - 38.10) MB38.03 ± (38.00 - 38.06) MB-0.1%
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)+0.1%✅⬆️

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration210.98 ± (210.61 - 211.56) ms191.07 ± (191.17 - 191.84) ms-9.4%
.NET Framework 4.8 - Bailout
duration214.99 ± (214.44 - 215.34) ms195.32 ± (195.06 - 195.45) ms-9.2%
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1265.27 ± (1264.17 - 1271.43) ms1169.12 ± (1170.36 - 1177.09) ms-7.6%
.NET Core 3.1 - Baseline
process.internal_duration_ms203.57 ± (203.12 - 204.02) ms184.48 ± (184.18 - 184.79) ms-9.4%
process.time_to_main_ms89.89 ± (89.58 - 90.20) ms80.34 ± (80.18 - 80.49) ms-10.6%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.07 ± (16.05 - 16.09) MB16.34 ± (16.31 - 16.38) MB+1.7%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (19 - 20)-1.2%
.NET Core 3.1 - Bailout
process.internal_duration_ms202.98 ± (202.52 - 203.44) ms183.82 ± (183.57 - 184.06) ms-9.4%
process.time_to_main_ms91.51 ± (91.27 - 91.76) ms81.55 ± (81.47 - 81.63) ms-10.9%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.08 ± (16.06 - 16.09) MB16.25 ± (16.14 - 16.35) MB+1.1%✅⬆️
runtime.dotnet.threads.count21 ± (21 - 21)20 ± (20 - 20)-3.3%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms401.33 ± (399.93 - 402.73) ms374.68 ± (373.60 - 375.76) ms-6.6%
process.time_to_main_ms566.20 ± (565.03 - 567.37) ms524.25 ± (523.39 - 525.10) ms-7.4%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed59.80 ± (59.70 - 59.91) MB57.99 ± (57.92 - 58.06) MB-3.0%
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)-1.3%
.NET 6 - Baseline
process.internal_duration_ms208.47 ± (208.06 - 208.87) ms188.72 ± (188.49 - 188.96) ms-9.5%
process.time_to_main_ms78.92 ± (78.61 - 79.23) ms70.57 ± (70.43 - 70.71) ms-10.6%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.46 ± (16.44 - 16.48) MB16.03 ± (15.87 - 16.20) MB-2.6%
runtime.dotnet.threads.count20 ± (19 - 20)18 ± (18 - 18)-7.6%
.NET 6 - Bailout
process.internal_duration_ms207.40 ± (206.88 - 207.93) ms187.69 ± (187.48 - 187.91) ms-9.5%
process.time_to_main_ms79.58 ± (79.36 - 79.80) ms71.58 ± (71.52 - 71.63) ms-10.1%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.48 ± (16.46 - 16.50) MB16.03 ± (15.86 - 16.20) MB-2.7%
runtime.dotnet.threads.count21 ± (20 - 21)19 ± (18 - 19)-9.3%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms579.91 ± (577.66 - 582.17) ms582.64 ± (580.26 - 585.03) ms+0.5%✅⬆️
process.time_to_main_ms579.70 ± (578.49 - 580.91) ms533.52 ± (532.70 - 534.34) ms-8.0%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.61 ± (61.53 - 61.69) MB61.65 ± (61.60 - 61.70) MB+0.1%✅⬆️
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)+0.5%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms209.30 ± (208.84 - 209.75) ms186.81 ± (186.57 - 187.04) ms-10.7%
process.time_to_main_ms78.75 ± (78.48 - 79.01) ms69.83 ± (69.68 - 69.99) ms-11.3%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.78 ± (11.76 - 11.80) MB11.97 ± (11.94 - 12.00) MB+1.6%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)18 ± (18 - 18)-5.0%
.NET 8 - Bailout
process.internal_duration_ms209.21 ± (208.71 - 209.70) ms185.95 ± (185.75 - 186.15) ms-11.1%
process.time_to_main_ms80.08 ± (79.86 - 80.29) ms70.99 ± (70.92 - 71.07) ms-11.3%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.83 ± (11.81 - 11.85) MB11.82 ± (11.72 - 11.92) MB-0.1%
runtime.dotnet.threads.count20 ± (20 - 20)18 ± (18 - 19)-7.7%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms517.32 ± (511.82 - 522.81) ms509.97 ± (507.25 - 512.70) ms-1.4%
process.time_to_main_ms531.98 ± (531.07 - 532.89) ms484.08 ± (483.45 - 484.72) ms-9.0%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed51.36 ± (51.31 - 51.41) MB51.43 ± (51.40 - 51.46) MB+0.1%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)29 ± (29 - 29)-2.5%
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 (8976) - mean (74ms)  : 69, 79
    master - mean (72ms)  : 69, 75

    section Bailout
    This PR (8976) - mean (77ms)  : 73, 81
    master - mean (81ms)  : 73, 89

    section CallTarget+Inlining+NGEN
    This PR (8976) - mean (1,089ms)  : 1050, 1128
    master - mean (1,096ms)  : 1052, 1141

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 (8976) - mean (113ms)  : 108, 118
    master - mean (115ms)  : 108, 121

    section Bailout
    This PR (8976) - mean (111ms)  : 109, 113
    master - mean (115ms)  : 108, 122

    section CallTarget+Inlining+NGEN
    This PR (8976) - mean (786ms)  : 767, 805
    master - mean (785ms)  : 763, 807

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8976) - mean (101ms)  : 96, 106
    master - mean (103ms)  : 97, 109

    section Bailout
    This PR (8976) - mean (99ms)  : 96, 102
    master - mean (99ms)  : 96, 103

    section CallTarget+Inlining+NGEN
    This PR (8976) - mean (947ms)  : 900, 993
    master - mean (950ms)  : 901, 999

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8976) - mean (96ms)  : 94, 99
    master - mean (98ms)  : 92, 105

    section Bailout
    This PR (8976) - mean (102ms)  : 97, 107
    master - mean (102ms)  : 96, 108

    section CallTarget+Inlining+NGEN
    This PR (8976) - mean (819ms)  : 781, 857
    master - mean (822ms)  : 782, 862

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 (8976) - mean (192ms)  : 188, 195
    master - mean (211ms)  : 205, 217

    section Bailout
    This PR (8976) - mean (195ms)  : 193, 197
    master - mean (215ms)  : 211, 219

    section CallTarget+Inlining+NGEN
    This PR (8976) - mean (1,174ms)  : 1126, 1222
    master - mean (1,268ms)  : 1214, 1321

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 (8976) - mean (274ms)  : 269, 278
    master - mean (303ms)  : 294, 312

    section Bailout
    This PR (8976) - mean (274ms)  : 271, 277
    master - mean (305ms)  : 295, 315

    section CallTarget+Inlining+NGEN
    This PR (8976) - mean (938ms)  : 922, 954
    master - mean (1,009ms)  : 984, 1035

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8976) - mean (268ms)  : 265, 271
    master - mean (298ms)  : 291, 305

    section Bailout
    This PR (8976) - mean (268ms)  : 265, 270
    master - mean (297ms)  : 291, 303

    section CallTarget+Inlining+NGEN
    This PR (8976) - mean (1,146ms)  : 1109, 1183
    master - mean (1,200ms)  : 1160, 1239

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8976) - mean (266ms)  : 262, 270
    master - mean (300ms)  : 294, 306

    section Bailout
    This PR (8976) - mean (266ms)  : 264, 269
    master - mean (301ms)  : 293, 308

    section CallTarget+Inlining+NGEN
    This PR (8976) - mean (1,026ms)  : 977, 1075
    master - mean (1,094ms)  : 989, 1199

Loading

@pr-commenter

pr-commenter Bot commented Aug 1, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-08-01 00:28:38

Comparing candidate commit 891ad67 in PR branch brian.marks/sensitive-config-analyzer with baseline commit 1dbaad3 in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 1 performance regressions! Performance is the same for 71 metrics, 0 unstable metrics, 66 known flaky benchmarks, 60 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 ----------------------------------'

scenario:Benchmarks.Trace.DbCommandBenchmark.ExecuteNonQuery net472

  • 🟥 throughput [-25883.421op/s; -22654.694op/s] or [-7.290%; -6.381%]

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.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net472

  • 🟥 throughput [-8515.844op/s; -7060.496op/s] or [-6.549%; -5.430%]

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net472

  • 🟥 throughput [-8957.495op/s; -8534.808op/s] or [-10.621%; -10.120%]

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

  • 🟥 throughput [-9109.850op/s; -7938.991op/s] or [-9.263%; -8.072%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+313.618ms; +321.142ms] or [+155.628%; +159.362%]
  • 🟥 throughput [-45.977op/s; -42.012op/s] or [-8.272%; -7.559%]

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

  • 🟥 execution_time [+375.703ms; +378.597ms] or [+296.828%; +299.114%]
  • 🟩 throughput [+96.762op/s; +101.732op/s] or [+12.758%; +13.413%]

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

  • 🟥 execution_time [+390.659ms; +393.003ms] or [+345.719%; +347.793%]

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

  • 🟥 allocated_mem [+4.692KB; +4.693KB] or [+98.785%; +98.801%]
  • 🟥 throughput [-61514.402op/s; -61107.482op/s] or [-47.861%; -47.545%]

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

  • 🟥 allocated_mem [+3.816KB; +3.816KB] or [+80.699%; +80.711%]
  • 🟩 execution_time [-15.473ms; -11.302ms] or [-7.226%; -5.278%]
  • 🟥 throughput [-59628.820op/s; -56846.348op/s] or [-43.526%; -41.495%]

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

  • 🟥 allocated_mem [+4.544KB; +4.544KB] or [+98.261%; +98.274%]
  • 🟥 throughput [-48669.869op/s; -46412.158op/s] or [-44.003%; -41.962%]

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

  • 🟥 allocated_mem [+1.315KB; +1.315KB] or [+106.388%; +106.404%]
  • 🟥 throughput [-267632.413op/s; -259677.804op/s] or [-27.327%; -26.514%]

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

  • 🟥 allocated_mem [+479 bytes; +480 bytes] or [+39.212%; +39.221%]
  • 🟩 execution_time [-26.339ms; -21.476ms] or [-11.746%; -9.577%]

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

  • 🟥 allocated_mem [+1.280KB; +1.280KB] or [+105.947%; +105.963%]
  • 🟥 throughput [-158668.389op/s; -142464.871op/s] or [-22.798%; -20.469%]

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

  • 🟥 allocated_mem [+3.378KB; +3.378KB] or [+89.003%; +89.017%]
  • 🟥 throughput [-74354.260op/s; -73595.282op/s] or [-50.040%; -49.529%]

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

  • 🟥 allocated_mem [+3.336KB; +3.336KB] or [+88.150%; +88.161%]
  • 🟥 throughput [-73245.955op/s; -70347.787op/s] or [-46.605%; -44.761%]

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

  • 🟥 allocated_mem [+3.264KB; +3.264KB] or [+88.493%; +88.506%]
  • 🟥 throughput [-55430.088op/s; -52811.536op/s] or [-44.157%; -42.071%]

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

  • 🟩 throughput [+251802.923op/s; +280800.076op/s] or [+8.396%; +9.363%]

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

  • 🟩 execution_time [-19.274ms; -14.435ms] or [-8.885%; -6.654%]

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

  • 🟩 allocated_mem [-13.759KB; -13.757KB] or [-42.326%; -42.318%]
  • 🟥 execution_time [+299.856ms; +300.694ms] or [+149.828%; +150.246%]
  • 🟩 throughput [+840.738op/s; +926.994op/s] or [+9.286%; +10.239%]

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

  • 🟩 allocated_mem [-13.722KB; -13.718KB] or [-42.341%; -42.329%]
  • 🟥 execution_time [+299.733ms; +310.965ms] or [+151.156%; +156.820%]
  • 🟩 throughput [+2108.929op/s; +2454.834op/s] or [+16.130%; +18.776%]

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

  • 🟩 allocated_mem [-13.722KB; -13.718KB] or [-42.341%; -42.329%]
  • 🟥 execution_time [+299.423ms; +301.992ms] or [+150.826%; +152.120%]
  • 🟩 throughput [+1911.389op/s; +2038.029op/s] or [+18.454%; +19.676%]

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

  • 🟥 execution_time [+297.524ms; +298.800ms] or [+146.132%; +146.759%]
  • 🟩 throughput [+565.037op/s; +576.994op/s] or [+14.979%; +15.296%]

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

  • 🟥 execution_time [+299.911ms; +302.502ms] or [+146.615%; +147.882%]
  • 🟩 throughput [+2709.422op/s; +2746.448op/s] or [+39.363%; +39.901%]

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

  • 🟥 execution_time [+302.202ms; +303.459ms] or [+151.040%; +151.668%]
  • 🟩 throughput [+1310.278op/s; +1365.384op/s] or [+26.008%; +27.102%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net472

  • 🟩 execution_time [-146.983µs; -142.533µs] or [-30.178%; -29.264%]
  • 🟩 throughput [+853.581op/s; +884.659op/s] or [+41.573%; +43.087%]

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

  • 🟩 execution_time [-138.017µs; -111.290µs] or [-31.654%; -25.524%]
  • 🟩 throughput [+850.799op/s; +974.536op/s] or [+36.989%; +42.369%]

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

  • 🟩 execution_time [-141.899µs; -119.865µs] or [-30.402%; -25.681%]
  • 🟩 throughput [+769.980op/s; +853.531op/s] or [+35.544%; +39.401%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net472

  • 🟩 execution_time [-127.162µs; -122.870µs] or [-34.333%; -33.174%]
  • 🟩 throughput [+1351.829op/s; +1402.223op/s] or [+50.065%; +51.932%]

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

  • 🟩 execution_time [-104.339µs; -80.743µs] or [-33.310%; -25.777%]
  • 🟩 throughput [+1223.458op/s; +1425.306op/s] or [+38.139%; +44.431%]

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

  • 🟩 execution_time [-137.981µs; -115.603µs] or [-37.746%; -31.624%]
  • 🟩 throughput [+1334.243op/s; +1470.749op/s] or [+47.881%; +52.779%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+299.747ms; +300.642ms] or [+149.605%; +150.051%]

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

  • unstable execution_time [+343.436ms; +404.656ms] or [+373.157%; +439.676%]
  • 🟩 throughput [+636.199op/s; +854.991op/s] or [+5.228%; +7.026%]

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

  • unstable execution_time [+298.448ms; +351.329ms] or [+226.609%; +266.761%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • unstable execution_time [+298.291ms; +343.724ms] or [+137.151%; +158.041%]
  • 🟥 throughput [-489.676op/s; -451.391op/s] or [-44.369%; -40.900%]

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

  • unstable execution_time [+142.206ms; +288.157ms] or [+60.602%; +122.800%]
  • 🟥 throughput [-678.795op/s; -594.635op/s] or [-45.276%; -39.662%]

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

  • 🟥 execution_time [+343.818ms; +355.809ms] or [+205.643%; +212.815%]
  • 🟥 throughput [-408.020op/s; -369.689op/s] or [-28.410%; -25.741%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net6.0

  • 🟩 execution_time [-168.404µs; -117.810µs] or [-8.531%; -5.968%]
  • 🟩 throughput [+34.023op/s; +47.529op/s] or [+6.716%; +9.383%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+302.909ms; +305.451ms] or [+152.539%; +153.819%]

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

  • 🟥 execution_time [+299.631ms; +312.593ms] or [+150.145%; +156.641%]

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

  • 🟥 execution_time [+303.440ms; +306.586ms] or [+152.435%; +154.016%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+304.058ms; +306.705ms] or [+152.688%; +154.017%]

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

  • 🟥 execution_time [+296.226ms; +298.098ms] or [+146.471%; +147.396%]

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

  • 🟥 execution_time [+301.351ms; +305.040ms] or [+152.738%; +154.607%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+300.436ms; +302.503ms] or [+150.792%; +151.829%]

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

  • 🟥 execution_time [+300.542ms; +302.875ms] or [+149.792%; +150.956%]
  • 🟩 throughput [+46294.782op/s; +50808.099op/s] or [+9.193%; +10.089%]

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

  • 🟥 execution_time [+301.226ms; +303.657ms] or [+149.857%; +151.067%]

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

  • 🟩 execution_time [-16.456ms; -12.794ms] or [-7.652%; -5.950%]
  • 🟩 throughput [+24121.408op/s; +31124.522op/s] or [+6.617%; +8.538%]

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

  • unstable execution_time [+13.414µs; +56.465µs] or [+3.313%; +13.947%]

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

  • 🟩 allocated_mem [-19.088KB; -19.064KB] or [-6.963%; -6.954%]
  • unstable execution_time [-32.845µs; +22.380µs] or [-6.492%; +4.423%]

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

  • unstable execution_time [-59.230µs; +4.209µs] or [-10.264%; +0.729%]
  • unstable throughput [+4.347op/s; +184.284op/s] or [+0.248%; +10.528%]

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

  • unstable execution_time [+7.978µs; +13.057µs] or [+18.856%; +30.863%]
  • 🟥 throughput [-5557.345op/s; -3669.803op/s] or [-23.395%; -15.449%]

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

  • unstable execution_time [-14.444µs; -6.834µs] or [-22.409%; -10.603%]
  • 🟩 throughput [+1707.077op/s; +3325.988op/s] or [+10.473%; +20.406%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+302.009ms; +303.260ms] or [+152.652%; +153.284%]

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

  • 🟥 execution_time [+301.615ms; +303.835ms] or [+153.521%; +154.651%]

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

  • 🟥 execution_time [+299.708ms; +302.285ms] or [+150.041%; +151.331%]

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

  • 🟩 throughput [+40887.628op/s; +44008.852op/s] or [+7.739%; +8.330%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+299.480ms; +302.421ms] or [+149.264%; +150.730%]

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

  • 🟥 execution_time [+301.384ms; +303.014ms] or [+151.341%; +152.159%]

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

  • 🟥 execution_time [+302.803ms; +305.195ms] or [+153.562%; +154.775%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+299.740ms; +300.848ms] or [+149.512%; +150.065%]
  • 🟩 throughput [+65845553.741op/s; +66229367.383op/s] or [+47.953%; +48.232%]

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

  • 🟥 execution_time [+418.768ms; +424.028ms] or [+520.813%; +527.354%]

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

  • 🟥 execution_time [+300.195ms; +301.368ms] or [+149.730%; +150.315%]
  • 🟩 throughput [+17956166.887op/s; +18946033.682op/s] or [+7.953%; +8.392%]

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

  • 🟩 throughput [+95365.904op/s; +104420.993op/s] or [+8.904%; +9.749%]

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

  • 🟩 throughput [+81852.714op/s; +112740.218op/s] or [+6.336%; +8.726%]

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

  • 🟩 throughput [+76859.819op/s; +84512.156op/s] or [+7.633%; +8.393%]

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

  • 🟩 throughput [+41519.494op/s; +48764.521op/s] or [+7.539%; +8.855%]

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

  • 🟩 throughput [+54199.253op/s; +81535.788op/s] or [+6.055%; +9.110%]

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 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.ObjectExtractorSimpleBody net472
  • 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.OptimizedCharSliceWithPool netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice netcoreapp3.1
  • 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.StartFinishScope netcoreapp3.1
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes netcoreapp3.1
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin netcoreapp3.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

AI Generated Largely based on code generated by an AI or LLM. This label is the same across all dd-trace-* repos

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant