Skip to content

Adding azure frontdoor support#8861

Draft
TophrC-dd wants to merge 9 commits into
masterfrom
TopherC-dd/Azure-frontdoor
Draft

Adding azure frontdoor support#8861
TophrC-dd wants to merge 9 commits into
masterfrom
TopherC-dd/Azure-frontdoor

Conversation

@TophrC-dd

Copy link
Copy Markdown

Summary of changes

This PR implements Azure FrontDoor. This is an upstream proxy service that Azure offers.

Azure Front Door
Azure Front Door is a edge computing CDN proxy that provides load balancing and regional routing to azure web apps and containers. Customers use this ensure their application has a single entry point across multiple regions.

One special case is that azure front door lacks the ability to insert timestamps in the headers. This may change in the future but due to this I modified the process to add a timespan at header detection which means that the accuracy of the timeline decreases but we still get a usable span and the proxy is represented. If this does change and the ability to insert timestamps does get implemented on Azure's side the code is thoughtful enough to not overwrite an existing timestamp header and making it less of an urgent change to remove the code I am introducing.

Reason for change

This is a proxy service from Azure. It would be great to provide observability coverage for customers to see in their traces.

Implementation details

I added Azure Front Door support to the inferred proxy span pipeline, following the same pattern already established for Azure API Management and AWS API Gateway.
The core of the work is two new classes: AzureFrontDoorExtractor and AzureFrontDoorSpanFactory. The extractor reads the standard inferred proxy headers (start time, domain, HTTP method, path, region) from the incoming request and returns an InferredProxyData struct. Unlike APIM and API Gateway, Azure Front Door does not inject a timestamp header, so if one isn't present the extractor synthesizes a start time from the current time — but if a start time header is present it will be used instead. The span factory takes that data and creates a web-type span with operation name azure.frontdoor, setting resource name, HTTP tags, region, and using the domain name as the service name.
I wired these into InferredProxySpanHelper so that when the x-dd-proxy header value is azure-fd, the coordinator is initialized with the Front Door extractor and factory and produces the inferred proxy scope.
I also updated AzureFunctionsCommon to recognize azure.frontdoor as a proxy operation name — same as it already does for azure.apim — so that Azure Functions doesn't overwrite the inferred proxy span as the root.
Finally, I added the constant AzureFrontDoorName = "azure.frontdoor" to AzureFunctionsConstants, and wrote unit tests for both the extractor and the span factory covering the happy path, missing optional headers, and invalid/missing start time.

Test coverage

AzureFrontDoorExtractorTests has 7 tests total (4 via [Theory], 3 [Fact]):

I verify that when all headers are present and valid, TryExtract returns true and correctly populates ProxyName, StartTime, HttpMethod, Path, Stage, and Region.
I verify that when only the required start time header is present (optional headers removed), extraction still succeeds and the optional fields come back null.
I cover 4 invalid start time cases (null, empty string, non-numeric, and an overflowing value) via a theory — all should return false with a default InferredProxyData.
I verify that a completely missing start time header also returns false.

AzureFrontDoorSpanFactoryTests has 1 test:

I verify that CreateSpan produces a span with the correct operation name (azure.frontdoor), resource name (GET /api/v1/users), span type (web), start time, and all expected tags (http.method, component, http.url, http.route).

Other details

try
{

var startTimeHeaderValue = InferredProxyHeaders.StartTime ?

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.

You're getting a compiler error here because InferredProxyHeaders.StartTime is not a bool, which you need to use the ?: operator.


if (string.Equals(proxyName, AzureFrontDoorHeaderValue, StringComparison.OrdinalIgnoreCase))
{
_azureCoordinator ??= new InferredProxyCoordinator(new AzureFrontDoorExtractor(), new Az());

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.

You're getting a compiler error with new Az().

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Yeah -- I realize I started to write the template but hadn't created the span factory.... a reason why this was in draft. I fixed this.

@pr-commenter

pr-commenter Bot commented Jul 1, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-07-03 01:46:42

Comparing candidate commit 9696d6a in PR branch TopherC-dd/Azure-frontdoor with baseline commit 93bb6e6 in branch master.

📊 Benchmarking dashboard

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

  • 🟩 throughput [+11570.777op/s; +12736.694op/s] or [+6.253%; +6.883%]

scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TracerBenchmark.StartSpan_SetActive net472

  • 🟩 throughput [+9149.850op/s; +9818.732op/s] or [+5.590%; +5.999%]

scenario:Benchmarks.Trace.HttpClientBenchmark.SendAsync net472

  • 🟥 throughput [-5134.517op/s; -4738.368op/s] or [-5.861%; -5.409%]

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 [-7528.451op/s; -6803.570op/s] or [-8.927%; -8.067%]

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

  • 🟥 throughput [-7407.820op/s; -6163.365op/s] or [-7.532%; -6.267%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+317.142ms; +323.941ms] or [+157.377%; +160.751%]
  • 🟥 throughput [-50.047op/s; -44.077op/s] or [-9.004%; -7.930%]

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

  • 🟥 execution_time [+379.906ms; +382.621ms] or [+300.149%; +302.294%]
  • 🟩 throughput [+86.816op/s; +97.648op/s] or [+11.446%; +12.875%]

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

  • 🟥 execution_time [+394.730ms; +396.815ms] or [+349.321%; +351.166%]

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

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

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

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+9.976%; +9.987%]
  • 🟩 execution_time [-16.015ms; -11.817ms] or [-7.480%; -5.519%]

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

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

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

  • 🟥 allocated_mem [+1.307KB; +1.307KB] or [+105.743%; +105.758%]
  • 🟥 throughput [-270518.951op/s; -267505.543op/s] or [-27.621%; -27.314%]

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

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+38.557%; +38.566%]
  • 🟩 execution_time [-26.567ms; -21.703ms] or [-11.848%; -9.679%]

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

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+105.288%; +105.304%]
  • 🟥 throughput [-157795.259op/s; -141459.374op/s] or [-22.672%; -20.325%]

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

  • 🟩 throughput [+9770.380op/s; +12792.209op/s] or [+6.217%; +8.139%]

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

  • 🟩 throughput [+9662.626op/s; +12387.382op/s] or [+7.698%; +9.868%]

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

  • 🟩 throughput [+474496.113op/s; +493061.242op/s] or [+15.822%; +16.441%]

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

  • 🟩 execution_time [-19.203ms; -14.869ms] or [-8.852%; -6.854%]
  • 🟩 throughput [+160027.388op/s; +213144.404op/s] or [+6.352%; +8.460%]

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

  • 🟥 execution_time [+298.069ms; +299.528ms] or [+148.935%; +149.664%]

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

  • 🟥 execution_time [+298.185ms; +301.739ms] or [+150.375%; +152.168%]

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

  • 🟥 execution_time [+299.986ms; +302.653ms] or [+151.110%; +152.453%]

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

  • 🟥 execution_time [+296.588ms; +297.538ms] or [+145.673%; +146.139%]

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

  • 🟥 execution_time [+294.597ms; +296.855ms] or [+144.017%; +145.121%]

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

  • 🟥 execution_time [+300.631ms; +303.575ms] or [+150.255%; +151.727%]

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

  • 🟥 execution_time [+28.261µs; +52.156µs] or [+9.022%; +16.651%]
  • 🟥 throughput [-477.683op/s; -276.971op/s] or [-14.891%; -8.634%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+299.626ms; +300.381ms] or [+149.544%; +149.921%]

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

  • unstable execution_time [+320.353ms; +392.604ms] or [+348.077%; +426.580%]
  • 🟩 throughput [+867.721op/s; +1055.856op/s] or [+7.130%; +8.676%]

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

  • unstable execution_time [+300.427ms; +352.108ms] or [+228.112%; +267.352%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • unstable execution_time [+280.395ms; +320.643ms] or [+128.923%; +147.429%]
  • 🟥 throughput [-515.859op/s; -474.850op/s] or [-46.742%; -43.026%]

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

  • unstable execution_time [+207.059ms; +340.375ms] or [+88.240%; +145.053%]
  • 🟥 throughput [-672.277op/s; -588.738op/s] or [-44.841%; -39.269%]

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

  • 🟥 allocated_mem [+2.203KB; +2.207KB] or [+5.203%; +5.211%]
  • 🟥 execution_time [+328.260ms; +344.177ms] or [+196.338%; +205.858%]
  • 🟥 throughput [-399.260op/s; -358.246op/s] or [-27.800%; -24.944%]

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

  • unstable throughput [+12.835op/s; +55.688op/s] or [+3.689%; +16.007%]

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

  • unstable throughput [-0.875op/s; +104.321op/s] or [-0.163%; +19.472%]

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

  • 🟩 execution_time [-169.170µs; -119.359µs] or [-8.570%; -6.046%]
  • 🟩 throughput [+34.518op/s; +47.621op/s] or [+6.814%; +9.401%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+299.559ms; +302.263ms] or [+150.852%; +152.214%]

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

  • 🟥 execution_time [+300.984ms; +301.951ms] or [+150.824%; +151.308%]

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

  • 🟥 execution_time [+303.148ms; +306.452ms] or [+152.289%; +153.948%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+302.250ms; +304.323ms] or [+151.780%; +152.821%]
  • 🟩 throughput [+18031.810op/s; +20239.521op/s] or [+6.041%; +6.781%]

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

  • 🟥 execution_time [+299.593ms; +301.218ms] or [+148.135%; +148.939%]

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

  • 🟥 execution_time [+301.634ms; +305.446ms] or [+152.881%; +154.813%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+300.227ms; +302.057ms] or [+150.687%; +151.605%]

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

  • 🟥 execution_time [+302.351ms; +304.661ms] or [+150.694%; +151.846%]
  • 🟩 throughput [+53842.415op/s; +57929.072op/s] or [+10.691%; +11.503%]

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

  • 🟥 execution_time [+299.423ms; +302.478ms] or [+148.960%; +150.480%]

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

  • unstable execution_time [+4.320µs; +49.839µs] or [+1.067%; +12.311%]

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

  • 🟩 allocated_mem [-17.766KB; -17.742KB] or [-6.481%; -6.472%]
  • unstable execution_time [-33.801µs; +23.328µs] or [-6.681%; +4.611%]

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

  • 🟩 allocated_mem [-16.855KB; -16.837KB] or [-6.144%; -6.138%]
  • unstable execution_time [+72.295µs; +306.211µs] or [+12.528%; +53.064%]
  • unstable throughput [-342.617op/s; -29.444op/s] or [-19.574%; -1.682%]

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

  • unstable execution_time [+7.182µs; +11.852µs] or [+16.977%; +28.015%]
  • 🟥 throughput [-5211.979op/s; -3352.735op/s] or [-21.941%; -14.114%]

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

  • unstable execution_time [-14.612µs; -7.262µs] or [-22.670%; -11.267%]
  • 🟩 throughput [+1787.988op/s; +3372.986op/s] or [+10.970%; +20.694%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+302.434ms; +303.731ms] or [+152.867%; +153.523%]

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

  • 🟥 execution_time [+305.413ms; +310.475ms] or [+155.454%; +158.031%]

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

  • 🟥 execution_time [+300.299ms; +302.290ms] or [+150.337%; +151.334%]

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

  • 🟩 throughput [+29833.897op/s; +32756.773op/s] or [+5.647%; +6.200%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+299.978ms; +301.944ms] or [+149.512%; +150.492%]

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

  • 🟥 execution_time [+302.104ms; +303.927ms] or [+151.702%; +152.617%]

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

  • 🟥 execution_time [+302.414ms; +305.020ms] or [+153.365%; +154.686%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+300.384ms; +301.666ms] or [+149.833%; +150.473%]
  • 🟩 throughput [+60965368.202op/s; +61278213.569op/s] or [+44.399%; +44.627%]

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

  • unstable execution_time [+337.716ms; +402.403ms] or [+420.010%; +500.459%]

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

  • 🟥 execution_time [+300.027ms; +301.187ms] or [+149.647%; +150.225%]

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

  • 🟩 throughput [+81489.714op/s; +91918.510op/s] or [+7.608%; +8.582%]

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

  • 🟩 throughput [+52787.142op/s; +72238.980op/s] or [+6.110%; +8.362%]

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

  • 🟩 throughput [+86008.377op/s; +93098.668op/s] or [+8.542%; +9.246%]

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

  • 🟩 throughput [+50333.465op/s; +56946.287op/s] or [+9.140%; +10.340%]

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

  • 🟩 throughput [+85541.980op/s; +104400.623op/s] or [+9.557%; +11.664%]

Known flaky benchmarks without significant changes:

  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.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.OriginalCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net472
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net6.0
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog netcoreapp3.1
  • scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive netcoreapp3.1
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net6.0
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes netcoreapp3.1
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin netcoreapp3.1

@dd-trace-dotnet-ci-bot

dd-trace-dotnet-ci-bot Bot commented Jul 1, 2026

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8861) 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.31 ± (70.52 - 71.01) ms70.02 ± (70.08 - 70.43) ms-0.4%
.NET Framework 4.8 - Bailout
duration74.07 ± (73.87 - 74.15) ms76.97 ± (76.92 - 77.43) ms+3.9%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1084.12 ± (1083.67 - 1089.89) ms1082.89 ± (1080.63 - 1087.46) ms-0.1%
.NET Core 3.1 - Baseline
process.internal_duration_ms21.99 ± (21.96 - 22.02) ms22.33 ± (22.27 - 22.38) ms+1.5%✅⬆️
process.time_to_main_ms80.76 ± (80.55 - 80.97) ms82.21 ± (81.89 - 82.53) ms+1.8%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.85 ± (10.85 - 10.86) MB10.90 ± (10.90 - 10.91) MB+0.4%✅⬆️
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms21.97 ± (21.94 - 21.99) ms22.26 ± (22.22 - 22.29) ms+1.3%✅⬆️
process.time_to_main_ms81.49 ± (81.36 - 81.62) ms83.71 ± (83.48 - 83.93) ms+2.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.94 ± (10.93 - 10.94) MB10.94 ± (10.94 - 10.94) MB+0.0%✅⬆️
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms208.46 ± (207.63 - 209.30) ms208.22 ± (207.22 - 209.22) ms-0.1%
process.time_to_main_ms531.05 ± (529.68 - 532.43) ms527.77 ± (526.48 - 529.07) ms-0.6%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed49.20 ± (49.16 - 49.24) MB49.27 ± (49.23 - 49.31) MB+0.1%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.2%
.NET 6 - Baseline
process.internal_duration_ms20.99 ± (20.95 - 21.03) ms21.16 ± (21.10 - 21.21) ms+0.8%✅⬆️
process.time_to_main_ms70.66 ± (70.46 - 70.85) ms71.91 ± (71.67 - 72.16) ms+1.8%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.64 ± (10.64 - 10.64) MB10.63 ± (10.63 - 10.63) MB-0.1%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.95 ± (20.92 - 20.98) ms20.90 ± (20.87 - 20.93) ms-0.2%
process.time_to_main_ms71.20 ± (71.09 - 71.31) ms71.11 ± (70.97 - 71.26) ms-0.1%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.75 ± (10.75 - 10.75) MB10.75 ± (10.74 - 10.75) MB-0.0%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms373.05 ± (370.88 - 375.22) ms373.13 ± (370.96 - 375.30) ms+0.0%✅⬆️
process.time_to_main_ms538.13 ± (536.92 - 539.33) ms534.71 ± (533.51 - 535.91) ms-0.6%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed50.25 ± (50.22 - 50.27) MB50.23 ± (50.20 - 50.25) MB-0.0%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.1%
.NET 8 - Baseline
process.internal_duration_ms19.20 ± (19.17 - 19.24) ms19.01 ± (18.98 - 19.05) ms-1.0%
process.time_to_main_ms69.76 ± (69.52 - 70.00) ms68.50 ± (68.36 - 68.63) ms-1.8%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.68 ± (7.67 - 7.68) MB7.66 ± (7.66 - 7.67) MB-0.2%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.34 ± (19.30 - 19.38) ms19.30 ± (19.26 - 19.34) ms-0.2%
process.time_to_main_ms72.09 ± (71.87 - 72.31) ms72.60 ± (72.36 - 72.85) ms+0.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.72 ± (7.72 - 7.73) MB7.71 ± (7.71 - 7.72) MB-0.1%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms298.35 ± (295.85 - 300.85) ms299.87 ± (297.40 - 302.35) ms+0.5%✅⬆️
process.time_to_main_ms486.44 ± (485.36 - 487.52) ms485.54 ± (484.38 - 486.69) ms-0.2%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed37.69 ± (37.66 - 37.71) MB37.68 ± (37.65 - 37.70) MB-0.0%
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)+0.6%✅⬆️

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration202.57 ± (202.34 - 203.26) ms203.43 ± (203.39 - 204.43) ms+0.4%✅⬆️
.NET Framework 4.8 - Bailout
duration206.43 ± (206.06 - 207.04) ms208.64 ± (208.25 - 208.94) ms+1.1%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1212.43 ± (1209.27 - 1215.84) ms1213.23 ± (1213.95 - 1220.00) ms+0.1%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms195.82 ± (195.39 - 196.24) ms197.48 ± (197.03 - 197.93) ms+0.8%✅⬆️
process.time_to_main_ms84.55 ± (84.25 - 84.85) ms85.92 ± (85.61 - 86.22) ms+1.6%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.06 ± (16.04 - 16.09) MB16.08 ± (16.05 - 16.11) MB+0.1%✅⬆️
runtime.dotnet.threads.count20 ± (19 - 20)20 ± (20 - 20)+1.3%✅⬆️
.NET Core 3.1 - Bailout
process.internal_duration_ms195.14 ± (194.69 - 195.60) ms197.27 ± (196.89 - 197.65) ms+1.1%✅⬆️
process.time_to_main_ms86.46 ± (86.19 - 86.74) ms87.41 ± (87.20 - 87.63) ms+1.1%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.08 ± (16.06 - 16.10) MB16.04 ± (16.02 - 16.07) MB-0.2%
runtime.dotnet.threads.count21 ± (21 - 21)20 ± (20 - 21)-1.5%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms390.98 ± (389.73 - 392.23) ms388.47 ± (387.03 - 389.90) ms-0.6%
process.time_to_main_ms550.41 ± (549.05 - 551.77) ms546.57 ± (545.16 - 547.98) ms-0.7%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed58.77 ± (58.53 - 59.01) MB58.23 ± (58.02 - 58.44) MB-0.9%
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)-0.5%
.NET 6 - Baseline
process.internal_duration_ms202.13 ± (201.73 - 202.53) ms202.38 ± (201.89 - 202.86) ms+0.1%✅⬆️
process.time_to_main_ms74.93 ± (74.67 - 75.19) ms74.64 ± (74.42 - 74.86) ms-0.4%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.31 ± (16.29 - 16.34) MB16.36 ± (16.34 - 16.38) MB+0.3%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)-0.2%
.NET 6 - Bailout
process.internal_duration_ms202.57 ± (202.21 - 202.92) ms201.86 ± (201.38 - 202.33) ms-0.4%
process.time_to_main_ms76.24 ± (76.05 - 76.43) ms76.06 ± (75.84 - 76.27) ms-0.2%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.38 ± (16.35 - 16.40) MB16.43 ± (16.41 - 16.45) MB+0.3%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+0.0%✅⬆️
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms589.10 ± (586.51 - 591.70) ms587.97 ± (585.09 - 590.85) ms-0.2%
process.time_to_main_ms557.39 ± (556.35 - 558.43) ms556.88 ± (555.76 - 558.00) ms-0.1%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.61 ± (61.51 - 61.72) MB61.66 ± (61.55 - 61.78) MB+0.1%✅⬆️
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)+0.4%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms201.08 ± (200.65 - 201.51) ms200.30 ± (199.86 - 200.75) ms-0.4%
process.time_to_main_ms74.25 ± (74.00 - 74.50) ms73.94 ± (73.70 - 74.17) ms-0.4%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.67 ± (11.65 - 11.69) MB11.73 ± (11.72 - 11.75) MB+0.5%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+0.1%✅⬆️
.NET 8 - Bailout
process.internal_duration_ms200.06 ± (199.68 - 200.43) ms200.86 ± (200.50 - 201.22) ms+0.4%✅⬆️
process.time_to_main_ms74.97 ± (74.76 - 75.18) ms75.28 ± (75.07 - 75.49) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.73 ± (11.71 - 11.76) MB11.75 ± (11.74 - 11.77) MB+0.2%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+1.4%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms511.68 ± (508.40 - 514.96) ms512.70 ± (509.88 - 515.53) ms+0.2%✅⬆️
process.time_to_main_ms505.36 ± (504.55 - 506.16) ms505.69 ± (504.88 - 506.50) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed51.06 ± (51.02 - 51.10) MB51.13 ± (51.10 - 51.17) 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 (8861) - mean (70ms)  : 68, 73
    master - mean (71ms)  : 67, 74

    section Bailout
    This PR (8861) - mean (77ms)  : 73, 81
    master - mean (74ms)  : 73, 75

    section CallTarget+Inlining+NGEN
    This PR (8861) - mean (1,084ms)  : 1034, 1134
    master - mean (1,087ms)  : 1042, 1132

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 (8861) - mean (112ms)  : 105, 118
    master - mean (109ms)  : 105, 113

    section Bailout
    This PR (8861) - mean (113ms)  : 109, 118
    master - mean (110ms)  : 108, 112

    section CallTarget+Inlining+NGEN
    This PR (8861) - mean (772ms)  : 749, 796
    master - mean (777ms)  : 754, 800

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8861) - mean (100ms)  : 95, 105
    master - mean (98ms)  : 94, 102

    section Bailout
    This PR (8861) - mean (98ms)  : 95, 102
    master - mean (98ms)  : 96, 99

    section CallTarget+Inlining+NGEN
    This PR (8861) - mean (937ms)  : 901, 972
    master - mean (945ms)  : 902, 987

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

    section Bailout
    This PR (8861) - mean (99ms)  : 94, 104
    master - mean (99ms)  : 94, 103

    section CallTarget+Inlining+NGEN
    This PR (8861) - mean (815ms)  : 778, 853
    master - mean (816ms)  : 779, 853

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 (8861) - mean (204ms)  : 198, 210
    master - mean (203ms)  : 197, 209

    section Bailout
    This PR (8861) - mean (209ms)  : 205, 212
    master - mean (207ms)  : 202, 211

    section CallTarget+Inlining+NGEN
    This PR (8861) - mean (1,217ms)  : 1172, 1262
    master - mean (1,213ms)  : 1164, 1261

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 (8861) - mean (293ms)  : 286, 301
    master - mean (289ms)  : 281, 297

    section Bailout
    This PR (8861) - mean (295ms)  : 290, 301
    master - mean (291ms)  : 284, 298

    section CallTarget+Inlining+NGEN
    This PR (8861) - mean (977ms)  : 958, 996
    master - mean (984ms)  : 960, 1008

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8861) - mean (287ms)  : 279, 295
    master - mean (286ms)  : 280, 291

    section Bailout
    This PR (8861) - mean (288ms)  : 280, 295
    master - mean (287ms)  : 282, 293

    section CallTarget+Inlining+NGEN
    This PR (8861) - mean (1,180ms)  : 1136, 1223
    master - mean (1,176ms)  : 1134, 1219

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8861) - mean (285ms)  : 279, 291
    master - mean (286ms)  : 277, 294

    section Bailout
    This PR (8861) - mean (286ms)  : 281, 292
    master - mean (286ms)  : 279, 292

    section CallTarget+Inlining+NGEN
    This PR (8861) - mean (1,049ms)  : 1006, 1092
    master - mean (1,051ms)  : 1004, 1097

Loading

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.

2 participants