Skip to content

[Debugger] Reduce noisy Info logs to debug in native code#8618

Merged
dudikeleti merged 1 commit into
masterfrom
dudik/reduce-log-levels
May 13, 2026
Merged

[Debugger] Reduce noisy Info logs to debug in native code#8618
dudikeleti merged 1 commit into
masterfrom
dudik/reduce-log-levels

Conversation

@dudikeleti

Copy link
Copy Markdown
Contributor

Summary of changes

Lower native log calls from Info to Debug in the debugger / dynamic instrumentation native code (debugger_probes_instrumentation_requester.cpp, debugger_rejit_preprocessor.cpp, debugger_method_rewriter.cpp).

Reason for change

These messages fire per-method, per-loop-iteration, or per-polled-call and were noisy at default verbosity without adding information beyond the batch-summary Info logs that already stay at Info.

Implementation details

Level-only change. No strings modified, no behavior change. No IsDebugEnabled() guards needed.

Test coverage

All existing tests.

@dudikeleti
dudikeleti requested a review from a team as a code owner May 12, 2026 18:57
@pr-commenter

pr-commenter Bot commented May 12, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-05-12 19:51:57

Comparing candidate commit 122c5d2 in PR branch dudik/reduce-log-levels with baseline commit 42c4df9 in branch master.

Some scenarios are present only in baseline or only in candidate runs. If you didn't create or remove some scenarios in your branch, this maybe a sign of crashed benchmarks 💥💥💥
Check Gitlab CI job log to find if any benchmark has crashed.

Scenarios present only in baseline:

  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan net472
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net6.0
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan net472
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net472
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • Benchmarks.OpenTelemetry.Api.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net472

Found 1 performance improvements and 3 performance regressions! Performance is the same for 49 metrics, 19 unstable metrics, 89 known flaky benchmarks, 37 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.OpenTelemetry.InstrumentedApi.Trace.TracerBenchmark.StartRootSpan net6.0

  • 🟩 throughput [+15530.602op/s; +28133.858op/s] or [+9.756%; +17.672%]

scenario:Benchmarks.Trace.HttpClientBenchmark.SendAsync net472

  • 🟥 throughput [-7333.760op/s; -6240.736op/s] or [-8.372%; -7.124%]

scenario:Benchmarks.Trace.HttpClientBenchmark.SendAsync net6.0

  • 🟥 throughput [-77523.950op/s; -68897.541op/s] or [-52.663%; -46.803%]

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

  • 🟥 throughput [-89263.333op/s; -70169.413op/s] or [-44.757%; -35.183%]

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.ActivityBenchmark.StartSpan net6.0

  • unstable execution_time [-42.381ms; -6.928ms] or [-25.775%; -4.214%]
  • unstable throughput [-5702.222op/s; +22341.754op/s] or [-3.381%; +13.245%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net6.0

  • unstable execution_time [-20.964ms; -3.691ms] or [-14.242%; -2.508%]
  • unstable throughput [-3104.246op/s; +13619.658op/s] or [-2.168%; +9.511%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1

  • unstable execution_time [-64.600ms; -25.064ms] or [-41.842%; -16.234%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net6.0

  • unstable execution_time [-6.379ms; +11.758ms] or [-4.914%; +9.058%]
  • unstable throughput [-4637.386op/s; +15061.337op/s] or [-2.605%; +8.460%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1

  • unstable execution_time [-40.693ms; -1.881ms] or [-30.257%; -1.399%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net6.0

  • unstable execution_time [+14.827ms; +37.669ms] or [+10.175%; +25.850%]
  • unstable throughput [-26806.013op/s; -10080.422op/s] or [-20.237%; -7.610%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1

  • unstable execution_time [-22.698ms; +20.656ms] or [-16.761%; +15.253%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net6.0

  • unstable execution_time [+19.121ms; +39.681ms] or [+15.095%; +31.327%]
  • unstable throughput [-38038.801op/s; -17601.685op/s] or [-20.056%; -9.280%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1

  • unstable execution_time [-43.460ms; -1.449ms] or [-27.623%; -0.921%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net6.0

  • unstable execution_time [-44.924ms; -10.555ms] or [-26.944%; -6.331%]
  • unstable throughput [-10156.177op/s; +14859.208op/s] or [-5.874%; +8.594%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net6.0

  • 🟩 allocated_mem [-144 bytes; -143 bytes] or [-9.188%; -9.180%]
  • unstable execution_time [-14.255ms; +8.714ms] or [-10.118%; +6.185%]
  • 🟩 throughput [+16420.216op/s; +30594.868op/s] or [+10.111%; +18.840%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan netcoreapp3.1

  • unstable execution_time [-35.861ms; -11.032ms] or [-31.718%; -9.758%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net6.0

  • 🟥 allocated_mem [+143 bytes; +144 bytes] or [+8.332%; +8.340%]
  • unstable execution_time [+4.716ms; +41.332ms] or [+3.303%; +28.949%]
  • unstable throughput [-36387.762op/s; -16910.862op/s] or [-23.714%; -11.021%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1

  • unstable execution_time [-34.100ms; -8.685ms] or [-30.892%; -7.868%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net6.0

  • unstable execution_time [+26.504ms; +61.760ms] or [+19.109%; +44.527%]
  • unstable throughput [-78760.850op/s; -47766.407op/s] or [-41.793%; -25.346%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1

  • unstable execution_time [-21.252ms; +15.359ms] or [-19.455%; +14.060%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net6.0

  • 🟩 allocated_mem [-144 bytes; -143 bytes] or [-5.210%; -5.202%]
  • unstable execution_time [-46.614ms; +5.057ms] or [-27.261%; +2.957%]
  • unstable throughput [+9341.507op/s; +38785.260op/s] or [+10.398%; +43.170%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled netcoreapp3.1

  • unstable execution_time [-66.280ms; -25.531ms] or [-42.509%; -16.375%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net6.0

  • unstable execution_time [-19.367ms; +13.608ms] or [-11.685%; +8.210%]
  • unstable throughput [-4068.377op/s; +13414.453op/s] or [-3.657%; +12.058%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1

  • unstable execution_time [-57.463ms; -27.085ms] or [-42.354%; -19.964%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net6.0

  • 🟥 allocated_mem [+95 bytes; +96 bytes] or [+6.377%; +6.386%]
  • unstable execution_time [-58.075ms; -23.647ms] or [-31.628%; -12.878%]
  • unstable throughput [+31791.535op/s; +49013.695op/s] or [+28.438%; +43.843%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1

  • unstable execution_time [-17.135ms; +19.136ms] or [-15.539%; +17.354%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net6.0

  • unstable execution_time [-63.614ms; -30.591ms] or [-34.473%; -16.578%]
  • unstable throughput [+12732.569op/s; +39729.757op/s] or [+8.890%; +27.740%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1

  • unstable execution_time [-43.043ms; -4.556ms] or [-32.110%; -3.399%]

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net472

  • 🟥 throughput [-9758.678op/s; -8766.442op/s] or [-11.571%; -10.394%]

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net6.0

  • unstable execution_time [-43.342ms; -17.228ms] or [-21.623%; -8.595%]
  • 🟥 throughput [-56538.754op/s; -49250.235op/s] or [-47.523%; -41.397%]

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

  • unstable execution_time [-92.485ms; -67.540ms] or [-46.517%; -33.970%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+311.338ms; +326.651ms] or [+154.497%; +162.096%]
  • 🟥 throughput [-57.026op/s; -44.506op/s] or [-10.260%; -8.008%]

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

  • unstable execution_time [+110.493ms; +132.764ms] or [+87.297%; +104.892%]

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

  • 🟥 execution_time [+84.214ms; +85.568ms] or [+74.526%; +75.724%]

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 [+439 bytes; +440 bytes] or [+9.299%; +9.310%]
  • unstable execution_time [-50.313ms; -28.400ms] or [-23.498%; -13.264%]
  • unstable throughput [-32362.711op/s; -17735.328op/s] or [-23.623%; -12.946%]

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

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+27.500%; +27.510%]
  • 🟩 execution_time [-31.716ms; -15.073ms] or [-15.103%; -7.178%]

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

  • 🟥 allocated_mem [+1.307KB; +1.307KB] or [+105.743%; +105.758%]
  • 🟥 throughput [-255199.906op/s; -247397.263op/s] or [-26.057%; -25.260%]

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

  • 🟥 allocated_mem [+439 bytes; +440 bytes] or [+35.945%; +35.954%]
  • unstable execution_time [-92.004ms; -66.558ms] or [-41.030%; -29.682%]
  • unstable throughput [-251463.671op/s; -127373.164op/s] or [-26.864%; -13.607%]

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

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+105.288%; +105.304%]
  • 🟩 execution_time [-88.370ms; -83.015ms] or [-44.110%; -41.437%]
  • 🟥 throughput [-130077.853op/s; -112133.137op/s] or [-18.690%; -16.111%]

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

  • 🟩 execution_time [-29.699ms; -11.103ms] or [-14.985%; -5.602%]
  • unstable throughput [-34228.786op/s; -18358.247op/s] or [-21.779%; -11.681%]

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

  • 🟩 throughput [+9777.593op/s; +12647.158op/s] or [+7.789%; +10.075%]

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

  • unstable execution_time [-57.368ms; -36.649ms] or [-28.364%; -18.120%]
  • unstable throughput [-268908.509op/s; +79454.728op/s] or [-8.967%; +2.649%]

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

  • 🟩 execution_time [-42.800ms; -23.582ms] or [-19.729%; -10.870%]
  • 🟩 throughput [+128186.147op/s; +197552.180op/s] or [+5.088%; +7.841%]

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

  • 🟥 execution_time [+301.162ms; +315.085ms] or [+150.481%; +157.437%]

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

  • unstable execution_time [+141.173ms; +182.413ms] or [+71.194%; +91.991%]

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

  • unstable execution_time [+217.283ms; +262.667ms] or [+109.450%; +132.311%]

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

  • 🟥 execution_time [+298.137ms; +311.893ms] or [+146.433%; +153.190%]

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

  • 🟥 execution_time [+255.609ms; +274.014ms] or [+124.958%; +133.955%]

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

  • 🟥 execution_time [+258.285ms; +270.230ms] or [+129.090%; +135.060%]

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

  • 🟥 allocated_mem [+24.632KB; +24.633KB] or [+1099.639%; +1099.708%]
  • 🟥 execution_time [+21.744µs; +45.569µs] or [+6.942%; +14.548%]
  • 🟥 throughput [-424.256op/s; -223.863op/s] or [-13.225%; -6.978%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+300.040ms; +301.294ms] or [+149.751%; +150.376%]

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

  • unstable execution_time [+363.035ms; +373.856ms] or [+394.452%; +406.210%]
  • 🟥 throughput [-6882.923op/s; -6738.065op/s] or [-56.558%; -55.368%]

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

  • unstable execution_time [+136.365ms; +184.492ms] or [+103.541%; +140.083%]
  • 🟥 throughput [-1322.782op/s; -1060.185op/s] or [-12.805%; -10.263%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+299.393ms; +315.747ms] or [+137.658%; +145.177%]
  • 🟥 throughput [-684.632op/s; -667.064op/s] or [-62.034%; -60.442%]

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

  • unstable execution_time [-48.640ms; +85.458ms] or [-20.728%; +36.418%]
  • 🟥 throughput [-715.872op/s; -621.727op/s] or [-47.749%; -41.469%]

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

  • 🟥 allocated_mem [+2.305KB; +2.308KB] or [+5.442%; +5.450%]
  • 🟥 execution_time [+338.376ms; +347.042ms] or [+202.388%; +207.571%]
  • 🟥 throughput [-724.961op/s; -690.756op/s] or [-50.478%; -48.096%]

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

  • 🟩 execution_time [-160.125µs; -147.707µs] or [-5.571%; -5.139%]
  • 🟩 throughput [+18.877op/s; +20.531op/s] or [+5.426%; +5.902%]

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

  • 🟩 execution_time [-140.948µs; -121.766µs] or [-7.140%; -6.168%]
  • 🟩 throughput [+33.503op/s; +39.079op/s] or [+6.614%; +7.715%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+305.652ms; +318.938ms] or [+153.921%; +160.611%]

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

  • 🟥 execution_time [+258.148ms; +274.356ms] or [+129.359%; +137.480%]

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

  • 🟥 execution_time [+296.255ms; +303.956ms] or [+148.826%; +152.695%]
  • 🟩 throughput [+24195.132op/s; +35160.376op/s] or [+5.097%; +7.407%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+305.767ms; +319.538ms] or [+153.546%; +160.461%]

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

  • unstable execution_time [+221.334ms; +241.802ms] or [+109.440%; +119.560%]

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

  • 🟥 execution_time [+305.196ms; +311.719ms] or [+154.687%; +157.993%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+304.266ms; +316.988ms] or [+152.714%; +159.099%]

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

  • unstable execution_time [+216.418ms; +283.464ms] or [+107.865%; +141.281%]
  • 🟩 throughput [+33498.712op/s; +44777.130op/s] or [+6.652%; +8.891%]

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

  • 🟥 execution_time [+297.812ms; +304.117ms] or [+148.159%; +151.295%]

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

  • unstable execution_time [-90.379ms; -64.923ms] or [-42.027%; -30.190%]
  • unstable throughput [-101049.144op/s; -55139.796op/s] or [-27.721%; -15.126%]

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

  • 🟩 execution_time [-98.430ms; -94.477ms] or [-49.374%; -47.391%]

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

  • 🟩 allocated_mem [-25.780KB; -25.758KB] or [-9.404%; -9.396%]
  • unstable execution_time [-88.833µs; -34.856µs] or [-17.557%; -6.889%]
  • 🟩 throughput [+170.095op/s; +366.540op/s] or [+8.488%; +18.291%]

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

  • 🟩 execution_time [-96.123µs; -38.926µs] or [-16.658%; -6.746%]
  • 🟩 throughput [+145.546op/s; +303.111op/s] or [+8.315%; +17.317%]

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

  • unstable execution_time [+2.678µs; +8.092µs] or [+6.331%; +19.127%]
  • 🟥 throughput [-3465.283op/s; -1328.092op/s] or [-14.588%; -5.591%]

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

  • unstable execution_time [-13.434µs; -3.648µs] or [-20.843%; -5.660%]
  • unstable throughput [+1220.578op/s; +3255.361op/s] or [+7.489%; +19.973%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+303.940ms; +316.117ms] or [+153.628%; +159.783%]

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

  • 🟥 execution_time [+301.286ms; +306.169ms] or [+153.354%; +155.839%]

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

  • 🟥 execution_time [+303.408ms; +308.519ms] or [+151.893%; +154.452%]

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

  • unstable execution_time [-32.491ms; -10.953ms] or [-16.241%; -5.475%]
  • unstable throughput [-219445.082op/s; -143828.880op/s] or [-41.536%; -27.224%]

scenario:Benchmarks.Trace.RedisBenchmark.SendReceive netcoreapp3.1

  • unstable execution_time [-97.016ms; -72.584ms] or [-49.177%; -36.793%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+298.767ms; +312.289ms] or [+148.908%; +155.648%]

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

  • unstable execution_time [+258.559ms; +296.990ms] or [+129.836%; +149.134%]

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

  • 🟥 execution_time [+304.946ms; +311.523ms] or [+154.649%; +157.984%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+300.547ms; +301.322ms] or [+149.914%; +150.301%]
  • 🟩 throughput [+64800817.487op/s; +65103295.510op/s] or [+47.192%; +47.412%]

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

  • unstable execution_time [+382.903ms; +401.614ms] or [+476.208%; +499.478%]
  • 🟥 throughput [-7582.169op/s; -7335.410op/s] or [-58.614%; -56.706%]

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

  • 🟥 execution_time [+302.106ms; +305.012ms] or [+150.684%; +152.133%]
  • 🟥 throughput [-30376016.465op/s; -29013408.835op/s] or [-13.455%; -12.851%]

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

  • unstable execution_time [-74.124ms; -47.988ms] or [-36.305%; -23.503%]
  • unstable throughput [-227587.331op/s; -79017.024op/s] or [-21.249%; -7.378%]

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

  • unstable execution_time [-87.436ms; -66.932ms] or [-44.243%; -33.868%]

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

  • unstable execution_time [-62.715ms; -39.092ms] or [-32.675%; -20.367%]
  • unstable throughput [-284614.960op/s; -115054.709op/s] or [-22.030%; -8.905%]

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

  • unstable execution_time [-55.337ms; -28.262ms] or [-27.188%; -13.886%]
  • 🟩 throughput [+74939.293op/s; +89362.732op/s] or [+7.443%; +8.875%]

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

  • unstable execution_time [-76.460ms; -52.171ms] or [-38.184%; -26.054%]
  • unstable throughput [-105864.962op/s; -29822.986op/s] or [-19.223%; -5.415%]

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

  • unstable execution_time [-70.791ms; -44.976ms] or [-35.568%; -22.598%]

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

  • unstable execution_time [-95.527ms; -69.867ms] or [-47.780%; -34.946%]

scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin netcoreapp3.1

  • unstable execution_time [-71.578ms; -43.721ms] or [-36.353%; -22.205%]

Known flaky benchmarks without significant changes:

  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net472
  • 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_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net472
  • 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_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody net472
  • 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.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.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark net472
  • scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net472

@dd-trace-dotnet-ci-bot

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8618) 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
duration73.49 ± (73.49 - 73.98) ms73.97 ± (74.11 - 74.63) ms+0.7%✅⬆️
.NET Framework 4.8 - Bailout
duration77.40 ± (77.43 - 77.82) ms77.50 ± (77.41 - 77.76) ms+0.1%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1096.73 ± (1096.06 - 1104.64) ms1093.50 ± (1095.06 - 1101.83) ms-0.3%
.NET Core 3.1 - Baseline
process.internal_duration_ms22.60 ± (22.56 - 22.64) ms22.52 ± (22.47 - 22.56) ms-0.4%
process.time_to_main_ms84.92 ± (84.73 - 85.11) ms84.87 ± (84.64 - 85.10) ms-0.1%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.92 ± (10.91 - 10.92) MB10.94 ± (10.93 - 10.94) MB+0.2%✅⬆️
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms22.51 ± (22.46 - 22.55) ms22.23 ± (22.20 - 22.26) ms-1.2%
process.time_to_main_ms87.04 ± (86.80 - 87.29) ms85.07 ± (84.87 - 85.26) ms-2.3%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.95 ± (10.95 - 10.96) MB10.97 ± (10.96 - 10.97) MB+0.1%✅⬆️
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms212.76 ± (211.93 - 213.59) ms214.20 ± (213.27 - 215.13) ms+0.7%✅⬆️
process.time_to_main_ms538.15 ± (536.75 - 539.56) ms543.23 ± (541.57 - 544.90) ms+0.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.45 ± (48.42 - 48.48) MB48.33 ± (48.29 - 48.37) MB-0.3%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.0%
.NET 6 - Baseline
process.internal_duration_ms21.78 ± (21.71 - 21.86) ms21.03 ± (21.00 - 21.06) ms-3.4%
process.time_to_main_ms77.16 ± (76.85 - 77.47) ms72.34 ± (72.18 - 72.49) ms-6.3%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.59 ± (10.59 - 10.59) MB10.63 ± (10.63 - 10.63) MB+0.4%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms21.17 ± (21.12 - 21.21) ms21.33 ± (21.28 - 21.38) ms+0.8%✅⬆️
process.time_to_main_ms75.11 ± (74.88 - 75.35) ms75.60 ± (75.32 - 75.88) ms+0.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.72 ± (10.72 - 10.72) MB10.75 ± (10.74 - 10.75) MB+0.2%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms378.22 ± (376.40 - 380.04) ms381.29 ± (378.99 - 383.59) ms+0.8%✅⬆️
process.time_to_main_ms536.60 ± (535.32 - 537.88) ms537.25 ± (536.10 - 538.40) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed49.77 ± (49.74 - 49.79) MB49.88 ± (49.85 - 49.91) MB+0.2%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.0%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms19.62 ± (19.57 - 19.67) ms19.76 ± (19.71 - 19.82) ms+0.7%✅⬆️
process.time_to_main_ms73.89 ± (73.61 - 74.17) ms74.39 ± (74.14 - 74.65) ms+0.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.65 ± (7.65 - 7.66) MB7.68 ± (7.68 - 7.69) MB+0.4%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.96 ± (19.89 - 20.02) ms19.70 ± (19.65 - 19.75) ms-1.3%
process.time_to_main_ms77.36 ± (77.06 - 77.67) ms74.82 ± (74.65 - 74.98) ms-3.3%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.70 ± (7.70 - 7.71) MB7.72 ± (7.72 - 7.73) MB+0.3%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms299.33 ± (296.98 - 301.68) ms296.72 ± (294.27 - 299.17) ms-0.9%
process.time_to_main_ms496.00 ± (494.90 - 497.10) ms503.57 ± (502.35 - 504.79) ms+1.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed36.88 ± (36.85 - 36.91) MB36.92 ± (36.89 - 36.95) MB+0.1%✅⬆️
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)-0.2%

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration191.95 ± (191.79 - 192.44) ms200.06 ± (199.24 - 200.15) ms+4.2%✅⬆️
.NET Framework 4.8 - Bailout
duration195.02 ± (194.99 - 195.43) ms202.14 ± (201.75 - 202.73) ms+3.7%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1162.89 ± (1163.67 - 1168.78) ms1201.20 ± (1202.05 - 1209.13) ms+3.3%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms185.06 ± (184.78 - 185.34) ms195.39 ± (194.83 - 195.96) ms+5.6%✅⬆️
process.time_to_main_ms80.58 ± (80.43 - 80.73) ms84.89 ± (84.52 - 85.25) ms+5.4%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.17 ± (16.14 - 16.20) MB15.99 ± (15.97 - 16.02) MB-1.1%
runtime.dotnet.threads.count20 ± (19 - 20)20 ± (20 - 20)+0.3%✅⬆️
.NET Core 3.1 - Bailout
process.internal_duration_ms185.22 ± (184.79 - 185.65) ms193.68 ± (193.20 - 194.16) ms+4.6%✅⬆️
process.time_to_main_ms82.50 ± (82.29 - 82.71) ms86.10 ± (85.84 - 86.37) ms+4.4%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.16 ± (16.14 - 16.18) MB16.07 ± (16.04 - 16.09) MB-0.6%
runtime.dotnet.threads.count21 ± (20 - 21)21 ± (20 - 21)-0.1%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms379.81 ± (378.60 - 381.03) ms388.64 ± (387.32 - 389.95) ms+2.3%✅⬆️
process.time_to_main_ms520.17 ± (519.08 - 521.26) ms534.85 ± (533.80 - 535.91) ms+2.8%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed57.03 ± (56.97 - 57.09) MB57.73 ± (57.50 - 57.96) MB+1.2%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)-0.0%
.NET 6 - Baseline
process.internal_duration_ms190.29 ± (189.88 - 190.70) ms200.59 ± (200.04 - 201.13) ms+5.4%✅⬆️
process.time_to_main_ms70.48 ± (70.25 - 70.71) ms74.11 ± (73.82 - 74.40) ms+5.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed15.93 ± (15.77 - 16.09) MB16.35 ± (16.33 - 16.37) MB+2.6%✅⬆️
runtime.dotnet.threads.count18 ± (18 - 18)19 ± (19 - 19)+5.8%✅⬆️
.NET 6 - Bailout
process.internal_duration_ms194.42 ± (193.96 - 194.88) ms200.35 ± (199.80 - 200.90) ms+3.1%✅⬆️
process.time_to_main_ms73.15 ± (72.96 - 73.34) ms75.06 ± (74.79 - 75.33) ms+2.6%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.37 ± (16.34 - 16.39) MB16.41 ± (16.38 - 16.44) MB+0.3%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+0.1%✅⬆️
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms583.90 ± (580.16 - 587.64) ms592.90 ± (590.17 - 595.63) ms+1.5%✅⬆️
process.time_to_main_ms515.02 ± (514.07 - 515.98) ms536.43 ± (535.50 - 537.37) ms+4.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.05 ± (60.97 - 61.14) MB61.34 ± (61.24 - 61.44) MB+0.5%✅⬆️
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)+0.1%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms189.17 ± (188.75 - 189.60) ms198.94 ± (198.44 - 199.45) ms+5.2%✅⬆️
process.time_to_main_ms70.18 ± (70.01 - 70.34) ms73.36 ± (73.04 - 73.68) ms+4.5%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.72 ± (11.70 - 11.74) MB11.69 ± (11.67 - 11.71) MB-0.3%
runtime.dotnet.threads.count18 ± (18 - 18)18 ± (18 - 18)+1.1%✅⬆️
.NET 8 - Bailout
process.internal_duration_ms191.05 ± (190.40 - 191.69) ms198.29 ± (197.77 - 198.81) ms+3.8%✅⬆️
process.time_to_main_ms72.27 ± (72.04 - 72.50) ms74.78 ± (74.52 - 75.04) ms+3.5%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.77 ± (11.75 - 11.78) MB11.74 ± (11.72 - 11.75) MB-0.2%
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+0.7%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms511.44 ± (508.81 - 514.07) ms518.31 ± (515.31 - 521.31) ms+1.3%✅⬆️
process.time_to_main_ms478.03 ± (477.07 - 478.99) ms496.06 ± (495.17 - 496.95) ms+3.8%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed50.62 ± (50.59 - 50.66) MB50.61 ± (50.56 - 50.65) MB-0.0%
runtime.dotnet.threads.count29 ± (29 - 30)30 ± (30 - 30)+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 (8618) - mean (74ms)  : 70, 78
    master - mean (74ms)  : 70, 77

    section Bailout
    This PR (8618) - mean (78ms)  : 76, 79
    master - mean (78ms)  : 75, 80

    section CallTarget+Inlining+NGEN
    This PR (8618) - mean (1,098ms)  : 1050, 1147
    master - mean (1,100ms)  : 1038, 1163

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 (8618) - mean (114ms)  : 110, 119
    master - mean (114ms)  : 111, 118

    section Bailout
    This PR (8618) - mean (114ms)  : 111, 116
    master - mean (117ms)  : 114, 119

    section CallTarget+Inlining+NGEN
    This PR (8618) - mean (795ms)  : 774, 816
    master - mean (787ms)  : 764, 810

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8618) - mean (99ms)  : 96, 102
    master - mean (106ms)  : 100, 112

    section Bailout
    This PR (8618) - mean (104ms)  : 98, 110
    master - mean (103ms)  : 98, 107

    section CallTarget+Inlining+NGEN
    This PR (8618) - mean (945ms)  : 910, 981
    master - mean (944ms)  : 906, 982

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8618) - mean (102ms)  : 97, 108
    master - mean (101ms)  : 96, 107

    section Bailout
    This PR (8618) - mean (102ms)  : 100, 104
    master - mean (106ms)  : 100, 111

    section CallTarget+Inlining+NGEN
    This PR (8618) - mean (831ms)  : 794, 867
    master - mean (828ms)  : 790, 866

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 (8618) - mean (200ms)  : 194, 205
    master - mean (192ms)  : 189, 195

    section Bailout
    This PR (8618) - mean (202ms)  : 197, 207
    master - mean (195ms)  : 193, 197

    section CallTarget+Inlining+NGEN
    This PR (8618) - mean (1,206ms)  : 1154, 1258
    master - mean (1,166ms)  : 1130, 1202

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 (8618) - mean (290ms)  : 283, 296
    master - mean (274ms)  : 271, 277

    section Bailout
    This PR (8618) - mean (289ms)  : 284, 294
    master - mean (276ms)  : 267, 285

    section CallTarget+Inlining+NGEN
    This PR (8618) - mean (962ms)  : 940, 985
    master - mean (939ms)  : 910, 967

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8618) - mean (284ms)  : 276, 291
    master - mean (269ms)  : 263, 275

    section Bailout
    This PR (8618) - mean (285ms)  : 278, 291
    master - mean (276ms)  : 268, 284

    section CallTarget+Inlining+NGEN
    This PR (8618) - mean (1,158ms)  : 1117, 1200
    master - mean (1,129ms)  : 1074, 1183

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8618) - mean (283ms)  : 277, 290
    master - mean (270ms)  : 259, 280

    section Bailout
    This PR (8618) - mean (284ms)  : 275, 293
    master - mean (274ms)  : 258, 290

    section CallTarget+Inlining+NGEN
    This PR (8618) - mean (1,046ms)  : 996, 1096
    master - mean (1,025ms)  : 978, 1072

Loading

@andrewlock andrewlock left a comment

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!

@dudikeleti
dudikeleti enabled auto-merge (squash) May 13, 2026 15:11
@dudikeleti
dudikeleti merged commit b246616 into master May 13, 2026
141 checks passed
@dudikeleti
dudikeleti deleted the dudik/reduce-log-levels branch May 13, 2026 15:12
@github-actions github-actions Bot added this to the vNext-v3 milestone May 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