Skip to content

[Tracer] Add Component Tag to Quartz Instrumentation#8315

Merged
chojomok merged 2 commits into
masterfrom
mohammad/quartz-component-tag
Mar 17, 2026
Merged

[Tracer] Add Component Tag to Quartz Instrumentation#8315
chojomok merged 2 commits into
masterfrom
mohammad/quartz-component-tag

Conversation

@chojomok

Copy link
Copy Markdown
Collaborator

Summary of changes

Add component: quartz tag to all Quartz.NET spans.

Reason for change

The Quartz integration was missing the component tag (Tags.InstrumentationName) that other integrations (RabbitMQ, Kafka, MSMQ, etc.) set on their spans. This tag allows
consumers to identify which library produced a span.

Implementation details

There are two code paths that produce Quartz spans:

  • Quartz v4 — handled by QuartzActivityHandler, which calls QuartzCommon.EnhanceActivityMetadata. The tag is added there.
  • Quartz v3 on .NET 5+ — handled by QuartzDiagnosticObserver (if branch, IActivity5), which also calls EnhanceActivityMetadata. Covered by the same change.
  • Quartz v3 on .NET Core 3.x — handled by QuartzDiagnosticObserver (else branch, IActivity), which cannot call EnhanceActivityMetadata. The tag is added manually in the
    else branch.

Test coverage

Snapshot files updated to include component: quartz in the Tags block for all spans:

  • QuartzTestsV3.verified.txt (v3 on .NET 5+)
  • QuartzTestsV4.verified.txt (v4)
  • QuartzTestsV3NETCOREAPP3X.verified.txt (v3 on .NET Core 3.x)

SpanMetadataV0Rules and SpanMetadataV1Rules already required component: quartz for Quartz spans, so this change brings the implementation in line with the existing validation
rules.

Other details

No breaking changes. The component tag is additive.

@chojomok
chojomok requested review from a team as code owners March 16, 2026 21:30
@chojomok chojomok added the area:automatic-instrumentation Automatic instrumentation managed C# code (Datadog.Trace.ClrProfiler.Managed) label Mar 16, 2026
@chojomok
chojomok marked this pull request as draft March 16, 2026 21:38
@github-actions

Copy link
Copy Markdown
Contributor

Snapshots difference summary

The following differences have been observed in committed snapshots. It is meant to help the reviewer.
The diff is simplistic, so please check some files anyway while we improve it.

7 occurrences of :

+      component: quartz,

@pr-commenter

pr-commenter Bot commented Mar 16, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-03-16 22:16:57

Comparing candidate commit 5d2b243 in PR branch mohammad/quartz-component-tag with baseline commit 48a1fe5 in branch master.

Found 10 performance improvements and 8 performance regressions! Performance is the same for 159 metrics, 15 unstable metrics.

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

  • 🟩 execution_time [-22.269ms; -17.461ms] or [-10.100%; -7.920%]

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

  • 🟩 execution_time [-23.940ms; -19.576ms] or [-10.860%; -8.880%]

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

  • 🟩 execution_time [-20.568ms; -14.468ms] or [-9.547%; -6.715%]

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

  • 🟩 throughput [+523.828op/s; +532.228op/s] or [+6.046%; +6.143%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+38.706ms; +43.792ms] or [+20.011%; +22.640%]
  • 🟥 throughput [-147.330op/s; -123.082op/s] or [-12.720%; -10.627%]

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

  • 🟥 execution_time [+73.486ms; +78.925ms] or [+75.498%; +81.086%]

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

  • 🟩 execution_time [-19.572ms; -15.668ms] or [-11.724%; -9.385%]
  • 🟩 throughput [+246.853op/s; +281.129op/s] or [+18.376%; +20.927%]

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

  • 🟥 execution_time [+10.020ms; +13.961ms] or [+5.057%; +7.045%]
  • 🟥 throughput [-20079.470op/s; -14457.567op/s] or [-7.222%; -5.200%]

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

  • 🟩 throughput [+119.971op/s; +294.405op/s] or [+6.153%; +15.099%]

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

  • 🟩 execution_time [-30.724ms; -27.857ms] or [-15.267%; -13.843%]

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

  • 🟩 execution_time [-17.203ms; -12.699ms] or [-8.112%; -5.988%]

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

  • 🟩 execution_time [-16.840ms; -14.683ms] or [-7.833%; -6.829%]

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

  • 🟥 execution_time [+14.332ms; +18.093ms] or [+7.244%; +9.144%]

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

  • 🟥 execution_time [+14.451ms; +19.860ms] or [+7.393%; +10.160%]

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

  • 🟥 execution_time [+14.024ms; +19.669ms] or [+7.116%; +9.981%]

@dd-trace-dotnet-ci-bot

dd-trace-dotnet-ci-bot Bot commented Mar 16, 2026

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8315) 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
duration74.96 ± (74.93 - 75.29) ms76.94 ± (76.86 - 77.21) ms+2.6%✅⬆️
.NET Framework 4.8 - Bailout
duration78.90 ± (78.74 - 79.15) ms80.97 ± (80.95 - 81.37) ms+2.6%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1096.19 ± (1095.62 - 1101.62) ms1110.93 ± (1111.49 - 1117.63) ms+1.3%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms23.42 ± (23.37 - 23.47) ms23.41 ± (23.36 - 23.46) ms-0.0%
process.time_to_main_ms88.25 ± (88.05 - 88.45) ms89.46 ± (89.27 - 89.65) ms+1.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.90 ± (10.89 - 10.90) MB10.91 ± (10.91 - 10.92) MB+0.1%✅⬆️
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms23.31 ± (23.26 - 23.37) ms23.58 ± (23.53 - 23.64) ms+1.2%✅⬆️
process.time_to_main_ms89.64 ± (89.41 - 89.86) ms92.08 ± (91.86 - 92.29) ms+2.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.93 ± (10.93 - 10.94) MB10.94 ± (10.93 - 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_ms226.29 ± (225.11 - 227.48) ms228.96 ± (227.69 - 230.23) ms+1.2%✅⬆️
process.time_to_main_ms504.46 ± (503.58 - 505.35) ms509.84 ± (508.81 - 510.87) ms+1.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed47.23 ± (47.21 - 47.25) MB47.12 ± (47.09 - 47.14) MB-0.2%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.0%
.NET 6 - Baseline
process.internal_duration_ms21.80 ± (21.77 - 21.83) ms22.20 ± (22.15 - 22.25) ms+1.8%✅⬆️
process.time_to_main_ms76.12 ± (75.94 - 76.29) ms78.05 ± (77.86 - 78.23) ms+2.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.63 ± (10.62 - 10.63) MB10.63 ± (10.63 - 10.64) MB+0.1%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms21.67 ± (21.63 - 21.72) ms22.06 ± (22.02 - 22.11) ms+1.8%✅⬆️
process.time_to_main_ms77.12 ± (76.92 - 77.32) ms79.00 ± (78.78 - 79.21) ms+2.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.74 ± (10.74 - 10.74) MB10.74 ± (10.74 - 10.74) MB+0.0%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms212.27 ± (210.45 - 214.09) ms214.58 ± (212.89 - 216.27) ms+1.1%✅⬆️
process.time_to_main_ms500.38 ± (499.54 - 501.22) ms508.85 ± (508.08 - 509.61) ms+1.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed49.24 ± (49.21 - 49.26) MB49.20 ± (49.17 - 49.24) MB-0.1%
runtime.dotnet.threads.count29 ± (29 - 29)29 ± (29 - 29)-0.0%
.NET 8 - Baseline
process.internal_duration_ms20.17 ± (20.13 - 20.21) ms20.40 ± (20.35 - 20.44) ms+1.1%✅⬆️
process.time_to_main_ms76.18 ± (76.00 - 76.36) ms77.34 ± (77.16 - 77.52) ms+1.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.66 ± (7.65 - 7.66) MB7.69 ± (7.68 - 7.70) MB+0.5%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms20.20 ± (20.15 - 20.25) ms20.41 ± (20.36 - 20.46) ms+1.0%✅⬆️
process.time_to_main_ms77.32 ± (77.15 - 77.48) ms78.07 ± (77.92 - 78.23) ms+1.0%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.74 ± (7.73 - 7.75) MB7.72 ± (7.71 - 7.73) MB-0.3%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms168.75 ± (167.88 - 169.63) ms170.84 ± (169.93 - 171.76) ms+1.2%✅⬆️
process.time_to_main_ms483.46 ± (482.59 - 484.33) ms488.30 ± (487.61 - 488.99) ms+1.0%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed36.54 ± (36.52 - 36.56) MB36.51 ± (36.49 - 36.52) MB-0.1%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.0%

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration193.73 ± (193.65 - 194.51) ms194.66 ± (194.71 - 195.65) ms+0.5%✅⬆️
.NET Framework 4.8 - Bailout
duration198.39 ± (198.09 - 198.79) ms199.09 ± (198.80 - 199.79) ms+0.4%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1148.37 ± (1151.59 - 1159.74) ms1162.00 ± (1165.55 - 1175.35) ms+1.2%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms188.30 ± (187.90 - 188.70) ms189.87 ± (189.40 - 190.35) ms+0.8%✅⬆️
process.time_to_main_ms81.12 ± (80.89 - 81.36) ms81.96 ± (81.75 - 82.18) ms+1.0%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.16 ± (16.14 - 16.19) MB16.08 ± (16.05 - 16.10) MB-0.5%
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.2%
.NET Core 3.1 - Bailout
process.internal_duration_ms187.56 ± (187.18 - 187.95) ms188.77 ± (188.34 - 189.20) ms+0.6%✅⬆️
process.time_to_main_ms82.12 ± (81.94 - 82.29) ms83.10 ± (82.94 - 83.26) ms+1.2%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.28 ± (16.24 - 16.32) MB16.13 ± (16.11 - 16.16) MB-0.9%
runtime.dotnet.threads.count21 ± (20 - 21)21 ± (21 - 21)+0.5%✅⬆️
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms396.63 ± (394.63 - 398.64) ms397.67 ± (396.15 - 399.20) ms+0.3%✅⬆️
process.time_to_main_ms474.05 ± (473.43 - 474.67) ms480.86 ± (479.99 - 481.72) ms+1.4%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed57.96 ± (57.81 - 58.12) MB57.94 ± (57.80 - 58.07) MB-0.0%
runtime.dotnet.threads.count30 ± (29 - 30)30 ± (30 - 30)+0.2%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms192.80 ± (192.42 - 193.19) ms196.83 ± (196.35 - 197.32) ms+2.1%✅⬆️
process.time_to_main_ms70.38 ± (70.18 - 70.57) ms71.85 ± (71.65 - 72.05) ms+2.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.16 ± (16.04 - 16.28) MB16.38 ± (16.36 - 16.40) MB+1.3%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+2.5%✅⬆️
.NET 6 - Bailout
process.internal_duration_ms191.84 ± (191.51 - 192.17) ms195.70 ± (195.26 - 196.15) ms+2.0%✅⬆️
process.time_to_main_ms71.15 ± (71.04 - 71.25) ms72.49 ± (72.33 - 72.65) ms+1.9%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.24 ± (16.12 - 16.35) MB16.35 ± (16.28 - 16.42) MB+0.7%✅⬆️
runtime.dotnet.threads.count20 ± (19 - 20)20 ± (20 - 20)+0.7%✅⬆️
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms431.79 ± (430.02 - 433.57) ms432.95 ± (431.37 - 434.54) ms+0.3%✅⬆️
process.time_to_main_ms477.66 ± (476.77 - 478.56) ms484.57 ± (483.45 - 485.69) ms+1.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed60.20 ± (60.10 - 60.30) MB60.16 ± (60.09 - 60.24) MB-0.1%
runtime.dotnet.threads.count30 ± (30 - 31)30 ± (30 - 30)-0.2%
.NET 8 - Baseline
process.internal_duration_ms189.76 ± (189.40 - 190.12) ms200.40 ± (199.81 - 200.99) ms+5.6%✅⬆️
process.time_to_main_ms69.53 ± (69.35 - 69.71) ms73.90 ± (73.65 - 74.15) ms+6.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.77 ± (11.74 - 11.80) MB11.70 ± (11.69 - 11.72) MB-0.6%
runtime.dotnet.threads.count18 ± (18 - 18)18 ± (18 - 18)+1.4%✅⬆️
.NET 8 - Bailout
process.internal_duration_ms189.38 ± (188.95 - 189.82) ms192.48 ± (192.07 - 192.90) ms+1.6%✅⬆️
process.time_to_main_ms70.95 ± (70.82 - 71.09) ms71.85 ± (71.68 - 72.01) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.78 ± (11.73 - 11.82) MB11.75 ± (11.73 - 11.76) MB-0.3%
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+0.3%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms355.09 ± (353.70 - 356.48) ms360.01 ± (358.76 - 361.27) ms+1.4%✅⬆️
process.time_to_main_ms453.16 ± (452.45 - 453.88) ms458.65 ± (457.87 - 459.44) ms+1.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed48.45 ± (48.42 - 48.49) MB48.39 ± (48.36 - 48.43) MB-0.1%
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)+0.0%✅⬆️
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 (8315) - mean (77ms)  : 74, 80
    master - mean (75ms)  : 72, 78

    section Bailout
    This PR (8315) - mean (81ms)  : 78, 84
    master - mean (79ms)  : 77, 81

    section CallTarget+Inlining+NGEN
    This PR (8315) - mean (1,115ms)  : 1070, 1159
    master - mean (1,099ms)  : 1063, 1135

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 (8315) - mean (120ms)  : 117, 124
    master - mean (119ms)  : 115, 122

    section Bailout
    This PR (8315) - mean (123ms)  : 119, 127
    master - mean (120ms)  : 117, 123

    section CallTarget+Inlining+NGEN
    This PR (8315) - mean (775ms)  : 753, 796
    master - mean (769ms)  : 746, 791

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8315) - mean (107ms)  : 104, 110
    master - mean (105ms)  : 102, 107

    section Bailout
    This PR (8315) - mean (108ms)  : 104, 112
    master - mean (105ms)  : 103, 108

    section CallTarget+Inlining+NGEN
    This PR (8315) - mean (760ms)  : 717, 803
    master - mean (750ms)  : 703, 796

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8315) - mean (106ms)  : 103, 109
    master - mean (104ms)  : 101, 108

    section Bailout
    This PR (8315) - mean (107ms)  : 104, 109
    master - mean (105ms)  : 103, 108

    section CallTarget+Inlining+NGEN
    This PR (8315) - mean (700ms)  : 676, 725
    master - mean (694ms)  : 670, 718

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 (8315) - mean (195ms)  : 190, 201
    master - mean (194ms)  : 189, 199

    section Bailout
    This PR (8315) - mean (199ms)  : 194, 204
    master - mean (198ms)  : 195, 202

    section CallTarget+Inlining+NGEN
    This PR (8315) - mean (1,170ms)  : 1095, 1246
    master - mean (1,156ms)  : 1097, 1214

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 (8315) - mean (281ms)  : 273, 288
    master - mean (278ms)  : 272, 285

    section Bailout
    This PR (8315) - mean (280ms)  : 274, 287
    master - mean (278ms)  : 273, 283

    section CallTarget+Inlining+NGEN
    This PR (8315) - mean (913ms)  : 881, 945
    master - mean (901ms)  : 872, 931

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8315) - mean (277ms)  : 268, 286
    master - mean (271ms)  : 265, 278

    section Bailout
    This PR (8315) - mean (277ms)  : 272, 282
    master - mean (271ms)  : 266, 276

    section CallTarget+Inlining+NGEN
    This PR (8315) - mean (951ms)  : 919, 983
    master - mean (942ms)  : 918, 965

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8315) - mean (284ms)  : 271, 297
    master - mean (269ms)  : 264, 274

    section Bailout
    This PR (8315) - mean (275ms)  : 266, 283
    master - mean (270ms)  : 264, 275

    section CallTarget+Inlining+NGEN
    This PR (8315) - mean (851ms)  : 815, 888
    master - mean (839ms)  : 816, 862

Loading

@chojomok
chojomok marked this pull request as ready for review March 17, 2026 15:10
@chojomok
chojomok merged commit 2848b9d into master Mar 17, 2026
140 checks passed
@chojomok
chojomok deleted the mohammad/quartz-component-tag branch March 17, 2026 18:21
@github-actions github-actions Bot added this to the vNext-v3 milestone Mar 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:automatic-instrumentation Automatic instrumentation managed C# code (Datadog.Trace.ClrProfiler.Managed)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants