Skip to content

Make bots sign their commits - #8963

Open
andrewlock wants to merge 9 commits into
masterfrom
andrew/sign-workflow-commits
Open

Make bots sign their commits#8963
andrewlock wants to merge 9 commits into
masterfrom
andrew/sign-workflow-commits

Conversation

@andrewlock

Copy link
Copy Markdown
Member

Summary of changes

  • Create a create-signed-pull-request action which will create a PR using signed commits
  • Update the existing workflows to use this instead of calling peter-evans/create-pull-request directly
  • Use DataDog/commit-headless to create signed commits without a PR

Reason for change

We need to enable commit-signing enforcement; today, these bot commits are not signed.

Implementation details

  • Wrap peter-evans/create-pull-request to ensure we always create signed commits
  • Use DataDog/commit-headless GitHub Action to create signed commits without a PR

Originally I removed peter-evans/create-pull-request entirely, and worked with the gh API directly, but it was a lot of bash effort and this is arguably simpler to understand. But we could switch it out later more easily if we need to, and as it's now all in one place, that becomes a lot easier (just revert my final commit on this branch).

Test coverage

Not easy to test this stuff, so to an extent we'll just have to push it and see, and wait to make sure everything we think should be signed, is! We could also not remove the exclusions for now, and instead remove them in a later commit, but I don't think that's necessary right now, and it's a quick fix if it is.

Wraps DataDog/commit-headless so bot workflows can create GitHub-signed commits
Also drops the milestone input: it referenced steps.rename.outputs, and there is no step with that id, so it always resolved to empty
The base branch now has to be stated explicitly: peter-evans defaulted it to the checked-out ref (the release branch), whereas gh defaults to the repository default branch.
The local git checkout -b is gone: commit-headless creates the remote
branch itself via create-branch, using the dispatched tag as the branch
point. The default GITHUB_TOKEN is enough, as the job already declares
contents: write.
Corrects the bot email to the 41898282+ form GitHub actually attributes commits to.
All workflows that create commits now push through the GitHub API, so the
excluded_emails escape hatch is no longer needed.
peter-evans/create-pull-request has a sign-commits input, which creates
the commit through the GitHub API rather than pushing it over git. It
needs a bot token to sign, and our dd-octo-sts tokens are GitHub App
tokens, so it applies here.

That replaces the staging, commit-headless call and gh plumbing with a
single delegation, removing all the bash from this action. Keeping the
wrapper means sign-commits is always set, so a workflow cannot leave it
off, and the signing mechanism can still be swapped in one place.

Callers are unchanged; every input they pass is still accepted.
@andrewlock
andrewlock requested a review from a team as a code owner July 30, 2026 15:56
@andrewlock andrewlock added the area:builds project files, build scripts, pipelines, versioning, releases, packages label Jul 30, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 01acf9affc

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

- name: Create Pull Request
id: pr
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
uses: ./.github/actions/create-signed-pull-request

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Keep the local action available after switching branches

When a v1.* or v2.* release is published, the earlier checkout replaces the workspace with release/1.x or release/2.x. Because this composite action is newly added on master, those existing branches do not receive .github/actions/create-signed-pull-request/action.yml automatically, so the runner will stop at this step instead of creating the version-bump PR. Invoke the pinned third-party action directly here, separately check out/copy the composite action, or backport it to every selected branch.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

probably "meh" seeing as we're not actually creating releases from those branches any more...

@andrewlock

Copy link
Copy Markdown
Member Author

@codex review

@chatgpt-codex-connector

Copy link
Copy Markdown

Codex Review: Didn't find any major issues. 🎉

Reviewed commit: 01acf9affc

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@pr-commenter

pr-commenter Bot commented Jul 30, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-07-30 16:41:36

Comparing candidate commit 01acf9a in PR branch andrew/sign-workflow-commits with baseline commit db340bf in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 1 performance regressions! Performance is the same for 70 metrics, 1 unstable metrics, 64 known flaky benchmarks, 62 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.HttpClientBenchmark.SendAsync net472

  • 🟥 throughput [-5633.590op/s; -5179.654op/s] or [-6.431%; -5.913%]

Unstable benchmarks

These benchmarks have a confidence interval too wide to call a change; treat them as noise rather than signal.

scenario:Benchmarks.Trace.HttpClientBenchmark.SendAsync netcoreapp3.1

  • unstable execution_time [-30.127ms; -8.474ms] or [-15.045%; -4.232%]

Known flaky benchmarks

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

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net472

  • 🟥 throughput [-9742.301op/s; -9343.110op/s] or [-11.551%; -11.078%]

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

  • 🟥 throughput [-9496.713op/s; -8397.826op/s] or [-9.656%; -8.539%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+303.266ms; +306.229ms] or [+150.491%; +151.962%]
  • 🟥 throughput [-52.285op/s; -47.904op/s] or [-9.407%; -8.619%]

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

  • 🟥 execution_time [+384.465ms; +385.952ms] or [+303.751%; +304.926%]
  • 🟩 throughput [+89.024op/s; +94.747op/s] or [+11.737%; +12.492%]

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

  • 🟥 execution_time [+393.589ms; +394.138ms] or [+348.311%; +348.797%]

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

  • 🟥 allocated_mem [+4.693KB; +4.694KB] or [+98.806%; +98.821%]
  • 🟥 throughput [-60408.221op/s; -60043.358op/s] or [-47.001%; -46.717%]

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

  • 🟥 allocated_mem [+3.816KB; +3.816KB] or [+80.699%; +80.711%]
  • 🟩 execution_time [-16.279ms; -12.105ms] or [-7.603%; -5.653%]
  • 🟥 throughput [-59446.835op/s; -56688.341op/s] or [-43.393%; -41.379%]

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

  • 🟥 allocated_mem [+4.544KB; +4.544KB] or [+98.261%; +98.274%]
  • 🟥 throughput [-49165.621op/s; -46891.569op/s] or [-44.451%; -42.395%]

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

  • 🟥 allocated_mem [+1.315KB; +1.315KB] or [+106.388%; +106.404%]
  • 🟥 throughput [-271114.532op/s; -265449.069op/s] or [-27.682%; -27.104%]

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

  • 🟥 allocated_mem [+479 bytes; +480 bytes] or [+39.212%; +39.221%]
  • 🟩 execution_time [-26.170ms; -20.184ms] or [-11.671%; -9.001%]
  • 🟥 throughput [-83941.962op/s; -57309.889op/s] or [-8.968%; -6.123%]

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

  • 🟥 allocated_mem [+1.280KB; +1.280KB] or [+105.947%; +105.963%]
  • 🟥 throughput [-162868.766op/s; -146635.920op/s] or [-23.401%; -21.069%]

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

  • 🟥 allocated_mem [+3.378KB; +3.378KB] or [+89.003%; +89.017%]
  • 🟥 throughput [-72665.251op/s; -71905.568op/s] or [-48.903%; -48.392%]

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

  • 🟥 allocated_mem [+3.336KB; +3.336KB] or [+88.150%; +88.161%]
  • 🟥 throughput [-73334.187op/s; -70448.888op/s] or [-46.661%; -44.825%]

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

  • 🟥 allocated_mem [+3.264KB; +3.264KB] or [+88.493%; +88.506%]
  • 🟥 throughput [-55871.812op/s; -53245.247op/s] or [-44.509%; -42.417%]

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

  • 🟩 throughput [+307702.511op/s; +328405.405op/s] or [+10.260%; +10.950%]

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

  • 🟩 execution_time [-18.997ms; -14.665ms] or [-8.757%; -6.760%]

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

  • 🟥 execution_time [+299.762ms; +300.712ms] or [+149.781%; +150.256%]

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

  • 🟥 execution_time [+300.092ms; +303.203ms] or [+151.337%; +152.906%]

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

  • 🟥 execution_time [+300.932ms; +304.423ms] or [+151.586%; +153.345%]

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

  • 🟥 execution_time [+296.564ms; +297.344ms] or [+145.661%; +146.044%]

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

  • 🟥 execution_time [+294.407ms; +300.346ms] or [+143.925%; +146.828%]

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

  • 🟥 execution_time [+301.668ms; +303.531ms] or [+150.773%; +151.705%]

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

  • 🟥 execution_time [+25.715µs; +49.546µs] or [+8.210%; +15.818%]
  • 🟥 throughput [-456.879op/s; -256.594op/s] or [-14.242%; -7.999%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+300.762ms; +301.899ms] or [+150.111%; +150.678%]

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

  • 🟥 execution_time [+404.656ms; +412.173ms] or [+439.676%; +447.843%]
  • 🟩 throughput [+720.738op/s; +928.586op/s] or [+5.922%; +7.630%]

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

  • unstable execution_time [+245.597ms; +311.059ms] or [+186.479%; +236.184%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • unstable execution_time [+345.958ms; +423.423ms] or [+159.068%; +194.686%]
  • 🟥 throughput [-590.655op/s; -526.245op/s] or [-53.519%; -47.683%]

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

  • unstable execution_time [+206.123ms; +339.426ms] or [+87.841%; +144.649%]
  • 🟥 throughput [-676.984op/s; -593.472op/s] or [-45.155%; -39.585%]

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

  • 🟥 execution_time [+343.620ms; +354.442ms] or [+205.525%; +211.998%]
  • 🟥 throughput [-406.312op/s; -368.730op/s] or [-28.291%; -25.674%]

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

  • unstable throughput [+8.220op/s; +124.413op/s] or [+1.534%; +23.223%]

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

  • 🟩 execution_time [-183.003µs; -129.482µs] or [-9.270%; -6.559%]
  • 🟩 throughput [+37.776op/s; +51.949op/s] or [+7.457%; +10.255%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+302.433ms; +303.747ms] or [+152.299%; +152.961%]

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

  • 🟥 execution_time [+297.148ms; +308.844ms] or [+148.901%; +154.762%]

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

  • 🟥 execution_time [+302.907ms; +306.302ms] or [+152.168%; +153.873%]
  • 🟩 throughput [+27398.638op/s; +35180.203op/s] or [+5.772%; +7.411%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+299.843ms; +301.945ms] or [+150.571%; +151.627%]

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

  • 🟥 execution_time [+297.381ms; +299.061ms] or [+147.042%; +147.872%]

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

  • 🟥 execution_time [+303.693ms; +307.725ms] or [+153.925%; +155.969%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+297.687ms; +299.988ms] or [+149.412%; +150.567%]

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

  • 🟥 execution_time [+299.076ms; +302.002ms] or [+149.062%; +150.520%]

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

  • 🟥 execution_time [+301.615ms; +304.218ms] or [+150.051%; +151.346%]

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

  • 🟩 execution_time [-16.941ms; -13.290ms] or [-7.878%; -6.180%]
  • 🟩 throughput [+19341.721op/s; +26000.685op/s] or [+5.306%; +7.133%]

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

  • unstable execution_time [+18.250µs; +62.568µs] or [+4.508%; +15.455%]

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

  • 🟩 allocated_mem [-20.636KB; -20.613KB] or [-7.527%; -7.519%]
  • unstable execution_time [-21.349µs; +38.640µs] or [-4.220%; +7.637%]
  • unstable throughput [-135.327op/s; +74.517op/s] or [-6.753%; +3.718%]

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

  • 🟩 allocated_mem [-26.675KB; -26.657KB] or [-9.724%; -9.718%]
  • unstable execution_time [-47.089µs; +16.296µs] or [-8.160%; +2.824%]

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

  • unstable execution_time [+5.613µs; +10.457µs] or [+13.268%; +24.718%]
  • 🟥 throughput [-4629.694op/s; -2708.188op/s] or [-19.490%; -11.401%]

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

  • unstable execution_time [-13.051µs; -5.147µs] or [-20.248%; -7.985%]
  • unstable throughput [+1201.269op/s; +2958.096op/s] or [+7.370%; +18.149%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+301.601ms; +303.050ms] or [+152.446%; +153.178%]

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

  • 🟥 execution_time [+303.788ms; +306.107ms] or [+154.627%; +155.807%]

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

  • 🟥 execution_time [+299.977ms; +302.026ms] or [+150.176%; +151.201%]

scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net472

  • 🟥 throughput [-31124.504op/s; -28103.108op/s] or [-8.616%; -7.780%]

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

  • 🟩 throughput [+39574.783op/s; +45472.896op/s] or [+7.491%; +8.607%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+298.674ms; +300.718ms] or [+148.862%; +149.881%]

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

  • 🟥 execution_time [+298.714ms; +310.660ms] or [+150.000%; +155.999%]

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

  • 🟥 execution_time [+302.414ms; +304.942ms] or [+153.365%; +154.647%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+299.459ms; +300.325ms] or [+149.372%; +149.804%]
  • 🟩 throughput [+60981409.931op/s; +61299342.030op/s] or [+44.410%; +44.642%]

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

  • 🟥 execution_time [+419.499ms; +423.710ms] or [+521.721%; +526.959%]

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

  • 🟥 execution_time [+299.372ms; +300.794ms] or [+149.320%; +150.029%]

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

  • 🟩 throughput [+91948.381op/s; +102206.066op/s] or [+8.585%; +9.543%]

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

  • 🟩 throughput [+55110.611op/s; +74338.720op/s] or [+6.379%; +8.605%]

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

  • 🟩 throughput [+71324.234op/s; +102563.543op/s] or [+5.521%; +7.939%]

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

  • 🟩 throughput [+82608.431op/s; +90675.076op/s] or [+8.204%; +9.005%]

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

  • 🟩 throughput [+41958.926op/s; +47661.683op/s] or [+7.619%; +8.654%]

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

  • 🟩 throughput [+29905.882op/s; +39518.705op/s] or [+6.694%; +8.846%]

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

  • 🟩 throughput [+52737.308op/s; +72252.286op/s] or [+5.892%; +8.072%]

Known flaky benchmarks without significant changes:

  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark netcoreapp3.1
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice 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 netcoreapp3.1
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin netcoreapp3.1

@dd-trace-dotnet-ci-bot

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8963) 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
duration70.89 ± (70.93 - 71.25) ms71.53 ± (71.54 - 71.91) ms+0.9%✅⬆️
.NET Framework 4.8 - Bailout
duration78.52 ± (78.20 - 78.86) ms79.36 ± (78.96 - 79.44) ms+1.1%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1093.77 ± (1092.38 - 1099.92) ms1091.47 ± (1092.47 - 1099.81) ms-0.2%
.NET Core 3.1 - Baseline
process.internal_duration_ms22.32 ± (22.26 - 22.37) ms22.33 ± (22.28 - 22.38) ms+0.1%✅⬆️
process.time_to_main_ms83.75 ± (83.41 - 84.09) ms84.53 ± (84.24 - 84.81) ms+0.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed11.01 ± (11.01 - 11.02) MB11.01 ± (11.00 - 11.01) MB-0.1%
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms22.30 ± (22.26 - 22.33) ms22.13 ± (22.09 - 22.16) ms-0.8%
process.time_to_main_ms85.00 ± (84.75 - 85.25) ms83.99 ± (83.77 - 84.22) ms-1.2%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed11.05 ± (11.05 - 11.05) MB11.04 ± (11.04 - 11.05) MB-0.1%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms209.43 ± (208.56 - 210.31) ms209.98 ± (208.87 - 211.09) ms+0.3%✅⬆️
process.time_to_main_ms537.32 ± (536.00 - 538.63) ms536.13 ± (534.68 - 537.57) ms-0.2%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed49.62 ± (49.59 - 49.64) MB49.49 ± (49.45 - 49.53) MB-0.3%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.6%
.NET 6 - Baseline
process.internal_duration_ms20.97 ± (20.93 - 21.00) ms21.09 ± (21.05 - 21.14) ms+0.6%✅⬆️
process.time_to_main_ms72.03 ± (71.83 - 72.23) ms73.79 ± (73.49 - 74.08) ms+2.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.72 ± (10.72 - 10.73) MB10.72 ± (10.71 - 10.72) MB-0.1%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.97 ± (20.93 - 21.01) ms20.94 ± (20.90 - 20.99) ms-0.1%
process.time_to_main_ms74.70 ± (74.46 - 74.93) ms74.28 ± (74.03 - 74.54) ms-0.6%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.84 ± (10.84 - 10.84) MB10.84 ± (10.84 - 10.84) MB+0.0%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms371.62 ± (369.60 - 373.63) ms369.92 ± (367.88 - 371.97) ms-0.5%
process.time_to_main_ms544.81 ± (543.58 - 546.03) ms547.74 ± (546.52 - 548.96) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed50.65 ± (50.62 - 50.67) MB50.65 ± (50.63 - 50.67) MB+0.0%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.0%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms19.10 ± (19.07 - 19.13) ms19.06 ± (19.03 - 19.09) ms-0.2%
process.time_to_main_ms70.17 ± (70.04 - 70.29) ms70.12 ± (69.98 - 70.27) ms-0.1%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.76 ± (7.76 - 7.77) MB7.78 ± (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.16 ± (19.14 - 19.19) ms19.30 ± (19.26 - 19.34) ms+0.7%✅⬆️
process.time_to_main_ms72.44 ± (72.21 - 72.67) ms73.36 ± (73.10 - 73.63) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.82 ± (7.81 - 7.82) MB7.82 ± (7.81 - 7.82) MB-0.0%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms298.88 ± (296.44 - 301.32) ms295.47 ± (293.34 - 297.60) ms-1.1%
process.time_to_main_ms493.57 ± (492.49 - 494.66) ms494.89 ± (493.76 - 496.03) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed38.04 ± (38.02 - 38.07) MB38.11 ± (38.08 - 38.14) MB+0.2%✅⬆️
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)-0.7%

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration208.47 ± (208.51 - 209.60) ms209.50 ± (209.79 - 210.65) ms+0.5%✅⬆️
.NET Framework 4.8 - Bailout
duration213.61 ± (213.27 - 214.01) ms213.75 ± (213.36 - 213.99) ms+0.1%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1246.69 ± (1248.03 - 1253.95) ms1250.01 ± (1248.72 - 1254.65) ms+0.3%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms200.43 ± (200.09 - 200.76) ms200.12 ± (199.73 - 200.51) ms-0.2%
process.time_to_main_ms88.78 ± (88.50 - 89.07) ms88.55 ± (88.27 - 88.83) ms-0.3%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.07 ± (16.04 - 16.09) MB16.12 ± (16.10 - 16.14) MB+0.3%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms200.51 ± (200.23 - 200.80) ms199.30 ± (198.98 - 199.62) ms-0.6%
process.time_to_main_ms90.14 ± (89.93 - 90.35) ms89.40 ± (89.20 - 89.61) ms-0.8%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.04 ± (16.02 - 16.06) MB16.17 ± (16.15 - 16.19) MB+0.8%✅⬆️
runtime.dotnet.threads.count21 ± (20 - 21)21 ± (20 - 21)+0.2%✅⬆️
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms395.43 ± (394.27 - 396.59) ms395.61 ± (394.21 - 397.00) ms+0.0%✅⬆️
process.time_to_main_ms557.96 ± (556.82 - 559.11) ms558.76 ± (557.52 - 560.01) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed59.63 ± (59.44 - 59.81) MB59.67 ± (59.52 - 59.81) MB+0.1%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)+0.6%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms205.95 ± (205.54 - 206.36) ms203.97 ± (203.68 - 204.27) ms-1.0%
process.time_to_main_ms77.87 ± (77.61 - 78.14) ms76.85 ± (76.68 - 77.01) ms-1.3%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.44 ± (16.42 - 16.47) MB16.33 ± (16.30 - 16.35) MB-0.7%
runtime.dotnet.threads.count20 ± (19 - 20)19 ± (19 - 19)-0.6%
.NET 6 - Bailout
process.internal_duration_ms205.09 ± (204.74 - 205.44) ms204.07 ± (203.77 - 204.38) ms-0.5%
process.time_to_main_ms78.48 ± (78.30 - 78.66) ms78.11 ± (77.97 - 78.26) ms-0.5%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.41 ± (16.38 - 16.43) MB16.46 ± (16.43 - 16.48) MB+0.3%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 21)+0.9%✅⬆️
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms579.03 ± (576.35 - 581.71) ms579.99 ± (577.27 - 582.70) ms+0.2%✅⬆️
process.time_to_main_ms574.48 ± (573.56 - 575.40) ms573.45 ± (572.43 - 574.47) ms-0.2%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.38 ± (61.33 - 61.43) MB61.62 ± (61.54 - 61.70) MB+0.4%✅⬆️
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)+0.2%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms205.18 ± (204.83 - 205.53) ms204.80 ± (204.43 - 205.16) ms-0.2%
process.time_to_main_ms77.15 ± (76.89 - 77.41) ms76.80 ± (76.61 - 76.99) ms-0.4%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.80 ± (11.77 - 11.82) MB11.82 ± (11.79 - 11.84) MB+0.2%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)-0.5%
.NET 8 - Bailout
process.internal_duration_ms204.91 ± (204.60 - 205.23) ms204.46 ± (204.15 - 204.77) ms-0.2%
process.time_to_main_ms78.13 ± (77.95 - 78.31) ms78.16 ± (78.00 - 78.31) ms+0.0%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.81 ± (11.78 - 11.83) MB11.88 ± (11.86 - 11.90) MB+0.6%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+1.1%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms518.62 ± (513.59 - 523.65) ms512.61 ± (508.61 - 516.61) ms-1.2%
process.time_to_main_ms525.82 ± (525.05 - 526.60) ms526.00 ± (525.09 - 526.90) ms+0.0%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed51.38 ± (51.33 - 51.43) MB51.45 ± (51.41 - 51.48) MB+0.1%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)-0.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 (8963) - mean (72ms)  : 69, 74
    master - mean (71ms)  : 69, 73

    section Bailout
    This PR (8963) - mean (79ms)  : 76, 83
    master - mean (79ms)  : 73, 84

    section CallTarget+Inlining+NGEN
    This PR (8963) - mean (1,096ms)  : 1044, 1148
    master - mean (1,096ms)  : 1041, 1152

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 (8963) - mean (114ms)  : 109, 120
    master - mean (113ms)  : 107, 120

    section Bailout
    This PR (8963) - mean (113ms)  : 108, 119
    master - mean (115ms)  : 110, 120

    section CallTarget+Inlining+NGEN
    This PR (8963) - mean (783ms)  : 766, 799
    master - mean (785ms)  : 766, 803

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

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

    section CallTarget+Inlining+NGEN
    This PR (8963) - mean (947ms)  : 905, 990
    master - mean (948ms)  : 900, 995

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

    section Bailout
    This PR (8963) - mean (100ms)  : 94, 107
    master - mean (99ms)  : 95, 104

    section CallTarget+Inlining+NGEN
    This PR (8963) - mean (822ms)  : 786, 857
    master - mean (824ms)  : 775, 873

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 (8963) - mean (210ms)  : 206, 214
    master - mean (209ms)  : 203, 215

    section Bailout
    This PR (8963) - mean (214ms)  : 210, 217
    master - mean (214ms)  : 210, 217

    section CallTarget+Inlining+NGEN
    This PR (8963) - mean (1,252ms)  : 1211, 1292
    master - mean (1,251ms)  : 1208, 1294

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 (8963) - mean (299ms)  : 293, 305
    master - mean (299ms)  : 293, 306

    section Bailout
    This PR (8963) - mean (299ms)  : 294, 304
    master - mean (301ms)  : 296, 306

    section CallTarget+Inlining+NGEN
    This PR (8963) - mean (994ms)  : 973, 1016
    master - mean (995ms)  : 971, 1019

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8963) - mean (291ms)  : 286, 295
    master - mean (294ms)  : 289, 299

    section Bailout
    This PR (8963) - mean (292ms)  : 288, 296
    master - mean (293ms)  : 289, 298

    section CallTarget+Inlining+NGEN
    This PR (8963) - mean (1,194ms)  : 1152, 1236
    master - mean (1,191ms)  : 1147, 1236

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8963) - mean (293ms)  : 288, 297
    master - mean (293ms)  : 288, 299

    section Bailout
    This PR (8963) - mean (293ms)  : 289, 297
    master - mean (294ms)  : 290, 298

    section CallTarget+Inlining+NGEN
    This PR (8963) - mean (1,083ms)  : 994, 1171
    master - mean (1,076ms)  : 1006, 1146

Loading

@bouwkast bouwkast left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Thanks!

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

Labels

area:builds project files, build scripts, pipelines, versioning, releases, packages

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants