Skip to content

[SymDB] Fixed SymDB multipart event.json#8194

Merged
dudikeleti merged 2 commits intomasterfrom
dudik/symdb/fix-event-file
Feb 13, 2026
Merged

[SymDB] Fixed SymDB multipart event.json#8194
dudikeleti merged 2 commits intomasterfrom
dudik/symdb/fix-event-file

Conversation

@dudikeleti
Copy link
Contributor

Summary of changes

Fixed SymDB multipart event.json generation to always produce valid JSON.
Added a unit test validating the generated event.json payload.

Reason for change

The generated event.json was malformed ("debugger.type": symdb without quotes), which cause SymDB uploads to fail or be rejected by intake.

Test coverage

Added SymbolUploadApiTests.EventMetadata_IsValidJson_AndDebuggerTypeIsQuoted to assert:
Payload parses as JSON
ddsource, service, runtimeId, and debugger.type have expected values (including escaping behavior).

@dudikeleti dudikeleti requested a review from a team as a code owner February 11, 2026 18:39
@dudikeleti dudikeleti requested a review from Copilot February 11, 2026 18:41
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Fixes SymDB multipart event.json generation so the payload is always valid JSON, and adds a unit test to validate the generated metadata (including proper quoting/escaping).

Changes:

  • Replaced string-interpolated JSON with a JsonTextWriter-based JSON writer for event.json.
  • Introduced CreateEventMetadata(serviceName, runtimeId) to centralize metadata generation.
  • Added a unit test to validate JSON parsing and expected fields/values.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

File Description
tracer/src/Datadog.Trace/Debugger/Upload/SymbolUploadApi.cs Generates event.json via JsonTextWriter to ensure valid JSON and proper quoting.
tracer/test/Datadog.Trace.Tests/Debugger/SymbolsTests/SymbolUploadApiTests.cs Adds test coverage to ensure the metadata payload parses as JSON and contains expected fields.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +28 to +34
var dict = JsonConvert.DeserializeObject<Dictionary<string, object?>>(json);

Assert.NotNull(dict);
Assert.Equal("dd_debugger", dict!["ddsource"]);
Assert.Equal(serviceName, dict["service"]);
Assert.Equal(runtimeId, dict["runtimeId"]);
Assert.Equal("symdb", dict["debugger.type"]);
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

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

JsonConvert.DeserializeObject<Dictionary<string, object?>> will typically materialize values as JToken/JValue (because the target value type is object), so these equality assertions may fail even when the JSON is correct. To make the test reliable and validate quoting, consider parsing to a JObject and asserting both the value and token type (e.g., JTokenType.String for debugger.type), or deserialize to Dictionary<string, string> if all values are expected to be strings.

Copilot uses AI. Check for mistakes.
@dudikeleti dudikeleti force-pushed the dudik/symdb/fix-event-file branch from 7be009c to 3ee5fb7 Compare February 12, 2026 19:53
@pr-commenter
Copy link

pr-commenter bot commented Feb 12, 2026

Benchmarks

Benchmark execution time: 2026-02-12 20:35:52

Comparing candidate commit 3ee5fb7 in PR branch dudik/symdb/fix-event-file with baseline commit 1799318 in branch master.

Found 7 performance improvements and 10 performance regressions! Performance is the same for 158 metrics, 17 unstable metrics.

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

  • 🟩 execution_time [-85.840ms; -85.572ms] or [-43.539%; -43.403%]

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

  • 🟥 execution_time [+12.561ms; +17.464ms] or [+6.012%; +8.358%]

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

  • 🟩 execution_time [-27.553ms; -27.132ms] or [-13.611%; -13.403%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+41.143ms; +46.965ms] or [+21.292%; +24.305%]
  • 🟥 throughput [-162.214op/s; -133.154op/s] or [-13.988%; -11.482%]

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

  • 🟥 execution_time [+55.390ms; +60.065ms] or [+35.362%; +38.347%]

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

  • 🟩 execution_time [-16.169ms; -11.187ms] or [-10.735%; -7.427%]

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

  • 🟥 execution_time [+102.825µs; +109.615µs] or [+7.491%; +7.986%]
  • 🟥 throughput [-53.903op/s; -50.737op/s] or [-7.399%; -6.964%]

scenario:Benchmarks.Trace.DbCommandBenchmark.ExecuteNonQuery net6.0

  • 🟥 throughput [-57417.515op/s; -45519.696op/s] or [-10.767%; -8.536%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 throughput [-46197.709op/s; -42746.022op/s] or [-10.973%; -10.154%]

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

  • 🟥 execution_time [+17.595ms; +18.781ms] or [+8.862%; +9.460%]

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

  • 🟩 execution_time [-14.805µs; -10.466µs] or [-27.065%; -19.132%]
  • 🟩 throughput [+4385.503op/s; +6079.408op/s] or [+23.541%; +32.633%]

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

  • 🟩 throughput [+12685957.363op/s; +13936683.275op/s] or [+5.567%; +6.116%]

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

  • 🟥 execution_time [+25.755ms; +30.408ms] or [+14.117%; +16.667%]

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

  • 🟩 execution_time [-18.905ms; -14.794ms] or [-8.870%; -6.942%]

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

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8194) 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.45 ± (68.40 - 68.67) ms69.97 ± (70.05 - 70.37) ms+2.2%✅⬆️
.NET Framework 4.8 - Bailout
duration72.29 ± (72.23 - 72.52) ms74.44 ± (74.34 - 74.70) ms+3.0%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1027.92 ± (1028.83 - 1034.51) ms1040.36 ± (1044.04 - 1052.85) ms+1.2%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms22.24 ± (22.21 - 22.28) ms22.39 ± (22.36 - 22.41) ms+0.7%✅⬆️
process.time_to_main_ms85.84 ± (85.69 - 85.98) ms88.34 ± (88.17 - 88.51) ms+2.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed15.47 ± (15.47 - 15.48) MB15.46 ± (15.46 - 15.47) MB-0.0%
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms22.08 ± (22.06 - 22.11) ms22.27 ± (22.24 - 22.29) ms+0.8%✅⬆️
process.time_to_main_ms86.61 ± (86.49 - 86.72) ms89.50 ± (89.32 - 89.67) ms+3.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed15.51 ± (15.51 - 15.52) MB15.51 ± (15.50 - 15.51) MB-0.0%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms256.75 ± (253.93 - 259.56) ms263.12 ± (260.77 - 265.46) ms+2.5%✅⬆️
process.time_to_main_ms489.68 ± (489.17 - 490.18) ms495.95 ± (495.44 - 496.47) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed52.06 ± (52.04 - 52.08) MB52.20 ± (52.18 - 52.22) MB+0.3%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.0%
.NET 6 - Baseline
process.internal_duration_ms20.91 ± (20.88 - 20.94) ms21.03 ± (21.01 - 21.05) ms+0.6%✅⬆️
process.time_to_main_ms74.03 ± (73.90 - 74.16) ms76.59 ± (76.45 - 76.74) ms+3.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed15.19 ± (15.18 - 15.19) MB15.17 ± (15.17 - 15.18) MB-0.1%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.81 ± (20.79 - 20.84) ms21.00 ± (20.98 - 21.02) ms+0.9%✅⬆️
process.time_to_main_ms75.08 ± (75.00 - 75.16) ms77.45 ± (77.35 - 77.55) ms+3.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed15.30 ± (15.30 - 15.31) MB15.29 ± (15.28 - 15.29) MB-0.1%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms257.10 ± (256.40 - 257.81) ms257.76 ± (256.95 - 258.57) ms+0.3%✅⬆️
process.time_to_main_ms472.30 ± (471.54 - 473.06) ms474.20 ± (473.60 - 474.80) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed52.95 ± (52.92 - 52.97) MB53.01 ± (52.98 - 53.05) MB+0.1%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.0%
.NET 8 - Baseline
process.internal_duration_ms18.72 ± (18.69 - 18.74) ms19.00 ± (18.98 - 19.03) ms+1.5%✅⬆️
process.time_to_main_ms66.83 ± (66.74 - 66.93) ms69.66 ± (69.54 - 69.78) ms+4.2%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.67 ± (7.67 - 7.68) MB7.66 ± (7.66 - 7.67) MB-0.1%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms18.83 ± (18.79 - 18.86) ms19.07 ± (19.04 - 19.09) ms+1.3%✅⬆️
process.time_to_main_ms68.22 ± (68.15 - 68.29) ms70.87 ± (70.79 - 70.94) ms+3.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.71 ± (7.71 - 7.72) MB7.72 ± (7.71 - 7.73) MB+0.1%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms177.12 ± (176.43 - 177.81) ms179.98 ± (179.17 - 180.80) ms+1.6%✅⬆️
process.time_to_main_ms427.04 ± (426.58 - 427.50) ms430.86 ± (430.30 - 431.43) ms+0.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed35.88 ± (35.86 - 35.91) MB35.94 ± (35.91 - 35.98) MB+0.2%✅⬆️
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
duration213.75 ± (213.16 - 215.67) ms205.19 ± (205.38 - 207.12) ms-4.0%
.NET Framework 4.8 - Bailout
duration214.22 ± (214.11 - 216.47) ms208.04 ± (208.42 - 210.10) ms-2.9%
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1222.20 ± (1217.76 - 1226.54) ms1187.08 ± (1189.41 - 1197.96) ms-2.9%
.NET Core 3.1 - Baseline
process.internal_duration_ms207.91 ± (206.92 - 208.90) ms202.14 ± (201.37 - 202.90) ms-2.8%
process.time_to_main_ms96.00 ± (95.53 - 96.47) ms93.19 ± (92.83 - 93.56) ms-2.9%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed20.46 ± (20.45 - 20.48) MB20.52 ± (20.50 - 20.54) MB+0.3%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms208.17 ± (207.30 - 209.04) ms203.05 ± (202.29 - 203.81) ms-2.5%
process.time_to_main_ms97.28 ± (96.83 - 97.73) ms94.88 ± (94.52 - 95.24) ms-2.5%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed20.55 ± (20.53 - 20.57) MB20.60 ± (20.58 - 20.61) MB+0.2%✅⬆️
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (21 - 21)-0.8%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms468.21 ± (464.83 - 471.59) ms457.66 ± (454.53 - 460.80) ms-2.3%
process.time_to_main_ms538.16 ± (536.48 - 539.83) ms523.77 ± (522.50 - 525.04) ms-2.7%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed61.40 ± (61.24 - 61.57) MB62.10 ± (61.96 - 62.23) MB+1.1%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)+0.0%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms212.07 ± (210.89 - 213.24) ms203.56 ± (202.82 - 204.30) ms-4.0%
process.time_to_main_ms77.09 ± (76.67 - 77.52) ms74.38 ± (74.05 - 74.70) ms-3.5%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.19 ± (16.17 - 16.21) MB16.28 ± (16.26 - 16.30) MB+0.6%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)-0.0%
.NET 6 - Bailout
process.internal_duration_ms209.78 ± (208.81 - 210.75) ms203.82 ± (203.14 - 204.50) ms-2.8%
process.time_to_main_ms77.85 ± (77.45 - 78.25) ms75.66 ± (75.37 - 75.94) ms-2.8%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.21 ± (16.19 - 16.23) MB16.31 ± (16.29 - 16.33) MB+0.6%✅⬆️
runtime.dotnet.threads.count21 ± (20 - 21)20 ± (20 - 20)-1.7%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms479.33 ± (475.58 - 483.08) ms472.13 ± (468.43 - 475.83) ms-1.5%
process.time_to_main_ms482.22 ± (480.80 - 483.63) ms473.21 ± (472.00 - 474.43) ms-1.9%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed56.88 ± (56.73 - 57.02) MB57.51 ± (57.35 - 57.66) MB+1.1%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)-0.5%
.NET 8 - Baseline
process.internal_duration_ms212.32 ± (211.11 - 213.52) ms207.79 ± (206.89 - 208.69) ms-2.1%
process.time_to_main_ms82.30 ± (81.73 - 82.88) ms80.74 ± (80.36 - 81.12) ms-1.9%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.06 ± (16.04 - 16.08) MB16.11 ± (16.09 - 16.12) MB+0.3%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)-0.3%
.NET 8 - Bailout
process.internal_duration_ms209.29 ± (208.12 - 210.46) ms208.44 ± (207.59 - 209.29) ms-0.4%
process.time_to_main_ms82.98 ± (82.43 - 83.53) ms82.59 ± (82.21 - 82.97) ms-0.5%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.11 ± (16.09 - 16.13) MB16.17 ± (16.16 - 16.19) MB+0.4%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.1%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms487.67 ± (481.59 - 493.75) ms430.65 ± (423.22 - 438.08) ms-11.7%
process.time_to_main_ms487.07 ± (485.58 - 488.57) ms480.71 ± (479.60 - 481.82) ms-1.3%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed54.29 ± (54.25 - 54.32) MB53.98 ± (53.83 - 54.13) MB-0.6%
runtime.dotnet.threads.count29 ± (29 - 29)29 ± (29 - 29)+1.1%✅⬆️
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 (8194) - mean (70ms)  : 68, 73
    master - mean (69ms)  : 67, 70

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

    section CallTarget+Inlining+NGEN
    This PR (8194) - mean (1,048ms)  : 984, 1113
    master - mean (1,032ms)  : 991, 1072

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 (8194) - mean (117ms)  : 114, 121
    master - mean (114ms)  : 111, 116

    section Bailout
    This PR (8194) - mean (118ms)  : 116, 120
    master - mean (114ms)  : 113, 116

    section CallTarget+Inlining+NGEN
    This PR (8194) - mean (786ms)  : 749, 823
    master - mean (769ms)  : 714, 824

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

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

    section CallTarget+Inlining+NGEN
    This PR (8194) - mean (759ms)  : 739, 780
    master - mean (765ms)  : 736, 793

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

    section Bailout
    This PR (8194) - mean (97ms)  : 95, 99
    master - mean (93ms)  : 91, 95

    section CallTarget+Inlining+NGEN
    This PR (8194) - mean (639ms)  : 627, 652
    master - mean (634ms)  : 617, 651

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 (8194) - mean (206ms)  : 194, 219
    master - mean (214ms)  : 196, 232

    section Bailout
    This PR (8194) - mean (209ms)  : 197, 222
    master - mean (215ms)  : 198, 233

    section CallTarget+Inlining+NGEN
    This PR (8194) - mean (1,194ms)  : 1131, 1256
    master - mean (1,222ms)  : 1155, 1290

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 (8194) - mean (307ms)  : 289, 326
    master - mean (315ms)  : 294, 336

    section Bailout
    This PR (8194) - mean (310ms)  : 291, 328
    master - mean (318ms)  : 295, 341

    section CallTarget+Inlining+NGEN
    This PR (8194) - mean (1,015ms)  : 967, 1063
    master - mean (1,043ms)  : 977, 1108

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8194) - mean (289ms)  : 272, 306
    master - mean (299ms)  : 276, 322

    section Bailout
    This PR (8194) - mean (290ms)  : 272, 308
    master - mean (298ms)  : 279, 317

    section CallTarget+Inlining+NGEN
    This PR (8194) - mean (977ms)  : 926, 1029
    master - mean (997ms)  : 938, 1055

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8194) - mean (301ms)  : 282, 320
    master - mean (309ms)  : 276, 341

    section Bailout
    This PR (8194) - mean (304ms)  : 283, 325
    master - mean (305ms)  : 283, 326

    section CallTarget+Inlining+NGEN
    This PR (8194) - mean (947ms)  : 840, 1054
    master - mean (1,008ms)  : 910, 1107

Loading

@dudikeleti dudikeleti merged commit 81be459 into master Feb 13, 2026
148 of 149 checks passed
@dudikeleti dudikeleti deleted the dudik/symdb/fix-event-file branch February 13, 2026 13:12
@github-actions github-actions bot added this to the vNext-v3 milestone Feb 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants