Skip to content

[CI Visibility] Avoid oversized coverage IPC messages#8832

Merged
tonyredondo merged 6 commits into
masterfrom
feat/ci-coverage-ipc-reference-payload
Jun 26, 2026
Merged

[CI Visibility] Avoid oversized coverage IPC messages#8832
tonyredondo merged 6 commits into
masterfrom
feat/ci-coverage-ipc-reference-payload

Conversation

@tonyredondo

@tonyredondo tonyredondo commented Jun 25, 2026

Copy link
Copy Markdown
Member

Summary of changes

  • Send CI coverage IPC notifications as small persisted-result references instead of inline coverage payloads when persistence succeeds.
  • Add SessionCodeCoverageReferenceMessage and a single-result lookup path in CoverageBackfillDataStore.
  • Resolve referenced coverage results in the parent TestSession, preserving fail-closed behavior only while referenced tool coverage remains unresolved.
  • Update Coverlet, Coverlet XML fallback, and Microsoft CodeCoverage producers to use reference messages, with slim inline fallback only when metadata-heavy fields are not required.
  • Update unit and integration tests to cover reference IPC round trips, oversized persisted metadata, missing references, close-time fallback recovery, slim inline fallback, producer/session behavior, and XUnit EVP reference resolution.

Reason for change

SessionCodeCoverageMessage can include backfill validation dictionaries and superseded result ids. On large codebases, the serialized payload can exceed the CircularChannel body limit and trigger CircularChannel.Writer: Message size exceeds maximum allowed size. (Example, Case)

The full coverage payload is already persisted for the parent session fallback path, so the IPC channel only needs to notify the parent session which persisted result to load.

Implementation details

  • CoverageBackfillDataStore.TryReadCoverageIpcResult(...) reads one persisted result by session id, source, and result id, and rejects mismatched or invalid payloads.
  • TestSession handles SessionCodeCoverageReferenceMessage, records the resolved result through the existing arbitration path, and records an IPC failure marker if the reference cannot be resolved.
  • TestSession tracks unresolved coverage references by source and result id, so close-time persisted fallback recovery can clear a previously failed immediate reference read before publishing coverage.
  • DotnetCommon.CreateSessionCodeCoverageIpcMessage(...) centralizes producer behavior:
    • persisted result available: send a reference message;
    • persistence failed and the result has no heavy metadata: send a slim inline message;
    • persistence failed and the result depends on backfill validation or superseded ids: fail closed and record IPC failure.
  • Integration tests that previously treated only SessionCodeCoverageMessage as coverage IPC now also accept reference messages and resolve persisted results before asserting coverage values.
  • XUnit EVP integration tests resolve reference messages with the injected sample run id and workspace, so the IPC callback reads the same persisted Coverlet result that production TestSession would load instead of using the integration-test process run context.

Test coverage

  • git diff --check
  • dotnet test tracer/test/Datadog.Trace.Tests/Datadog.Trace.Tests.csproj --configuration Release --framework net8.0 --filter "FullyQualifiedName~TestSessionCoverageTests.IpcCoverageReference"
    • Passed: 5/5
  • dotnet test tracer/test/Datadog.Trace.Tests/Datadog.Trace.Tests.csproj --configuration Release --framework net8.0 --filter "FullyQualifiedName~CoverageBackfillDataStoreTests.TryReadCoverageIpcResult|FullyQualifiedName~IpcTests.IpcClientCanSendCoverageResultReference|FullyQualifiedName~TestSessionCoverageTests.IpcCoverageReference|FullyQualifiedName~TestSessionCoverageTests.CloseProcessesCoverageReferenceDeliveredThroughRealIpc|FullyQualifiedName~TestSessionCoverageTests.CreateSessionCodeCoverageIpcMessage|FullyQualifiedName~TestSessionCoverageTests.TrySendSessionCodeCoverageIpcMessageRecordsFailureWhenMessageFactoryFailsClosed|FullyQualifiedName~ManagedVanguardStopIntegrationTests.SendsReferenceCoverageIpcMessageAndSessionPublishesPersistedMicrosoftCoverage"
    • Passed: 36/36
  • dotnet build tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Datadog.Trace.ClrProfiler.IntegrationTests.csproj --configuration Release --framework net8.0
    • Passed: 0 warnings, 0 errors
  • Azure consolidated pipeline build 204276:
    • integration_tests_linux: passed
    • integration_tests_arm64: passed

Other details

I also attempted dotnet test tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Datadog.Trace.ClrProfiler.IntegrationTests.csproj --configuration Release --framework net8.0 --no-build --filter "FullyQualifiedName~Datadog.Trace.ClrProfiler.IntegrationTests.CI.TcpXUnitEvpTests.ItrCoverageBackfillSkippableDecisionMatrixMatchesJavaBehavior" locally. On macOS arm64 it failed before reaching the coverage-reference assertions because the sample produced no EVP requests, so the Linux CI matrix is the representative validation for this path.

@dd-trace-dotnet-ci-bot

dd-trace-dotnet-ci-bot Bot commented Jun 25, 2026

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8832) 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.19 ± (70.27 - 70.57) ms69.75 ± (69.76 - 70.07) ms-0.6%
.NET Framework 4.8 - Bailout
duration74.02 ± (73.92 - 74.22) ms73.50 ± (73.32 - 73.70) ms-0.7%
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1077.38 ± (1079.68 - 1086.55) ms1075.72 ± (1076.17 - 1083.34) ms-0.2%
.NET Core 3.1 - Baseline
process.internal_duration_ms22.07 ± (22.03 - 22.11) ms21.95 ± (21.92 - 21.98) ms-0.5%
process.time_to_main_ms80.78 ± (80.59 - 80.96) ms80.68 ± (80.53 - 80.83) ms-0.1%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.92 ± (10.91 - 10.92) MB10.93 ± (10.92 - 10.93) MB+0.1%✅⬆️
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms22.04 ± (22.01 - 22.07) ms21.97 ± (21.94 - 22.00) ms-0.3%
process.time_to_main_ms82.06 ± (81.94 - 82.18) ms81.75 ± (81.59 - 81.92) ms-0.4%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.96 ± (10.96 - 10.96) MB10.96 ± (10.96 - 10.97) MB+0.0%✅⬆️
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms209.08 ± (208.10 - 210.06) ms211.83 ± (210.85 - 212.81) ms+1.3%✅⬆️
process.time_to_main_ms527.96 ± (526.60 - 529.32) ms529.64 ± (528.32 - 530.96) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.73 ± (48.69 - 48.77) MB48.73 ± (48.69 - 48.77) MB-0.0%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.4%
.NET 6 - Baseline
process.internal_duration_ms20.88 ± (20.85 - 20.91) ms20.77 ± (20.74 - 20.79) ms-0.5%
process.time_to_main_ms70.52 ± (70.38 - 70.65) ms70.06 ± (69.92 - 70.20) ms-0.6%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.63 ± (10.63 - 10.63) MB10.65 ± (10.64 - 10.65) MB+0.2%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.75 ± (20.72 - 20.78) ms20.65 ± (20.62 - 20.68) ms-0.5%
process.time_to_main_ms71.25 ± (71.15 - 71.35) ms70.98 ± (70.87 - 71.09) ms-0.4%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.75 ± (10.75 - 10.76) MB10.76 ± (10.75 - 10.76) MB+0.0%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms374.50 ± (372.51 - 376.49) ms373.23 ± (371.00 - 375.47) ms-0.3%
process.time_to_main_ms535.78 ± (534.52 - 537.04) ms534.54 ± (533.46 - 535.62) ms-0.2%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed50.12 ± (50.09 - 50.14) MB50.16 ± (50.13 - 50.19) MB+0.1%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.0%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms19.08 ± (19.06 - 19.11) ms19.41 ± (19.37 - 19.45) ms+1.7%✅⬆️
process.time_to_main_ms69.12 ± (69.01 - 69.23) ms72.29 ± (72.08 - 72.49) ms+4.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.68 ± (7.68 - 7.69) MB7.70 ± (7.69 - 7.71) MB+0.2%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.00 ± (18.97 - 19.03) ms19.21 ± (19.18 - 19.25) ms+1.1%✅⬆️
process.time_to_main_ms70.22 ± (70.09 - 70.35) ms71.69 ± (71.49 - 71.88) ms+2.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.73 ± (7.72 - 7.73) MB7.74 ± (7.73 - 7.74) MB+0.1%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms298.27 ± (295.93 - 300.61) ms300.25 ± (298.18 - 302.32) ms+0.7%✅⬆️
process.time_to_main_ms485.57 ± (484.64 - 486.51) ms484.30 ± (483.34 - 485.25) ms-0.3%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed37.17 ± (37.14 - 37.20) MB37.27 ± (37.24 - 37.30) MB+0.3%✅⬆️
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)+0.2%✅⬆️

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration205.05 ± (204.77 - 205.70) ms200.44 ± (200.26 - 201.23) ms-2.2%
.NET Framework 4.8 - Bailout
duration208.74 ± (208.07 - 209.01) ms205.48 ± (204.90 - 205.73) ms-1.6%
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1215.29 ± (1213.20 - 1219.75) ms1205.70 ± (1204.28 - 1209.66) ms-0.8%
.NET Core 3.1 - Baseline
process.internal_duration_ms197.27 ± (196.85 - 197.69) ms194.24 ± (193.81 - 194.67) ms-1.5%
process.time_to_main_ms85.44 ± (85.14 - 85.74) ms84.19 ± (83.93 - 84.44) ms-1.5%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.03 ± (16.01 - 16.05) MB16.00 ± (15.98 - 16.02) MB-0.2%
runtime.dotnet.threads.count20 ± (19 - 20)20 ± (20 - 20)+0.2%✅⬆️
.NET Core 3.1 - Bailout
process.internal_duration_ms197.57 ± (197.11 - 198.03) ms194.04 ± (193.55 - 194.54) ms-1.8%
process.time_to_main_ms87.54 ± (87.29 - 87.80) ms85.95 ± (85.71 - 86.18) ms-1.8%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.09 ± (16.06 - 16.12) MB16.09 ± (16.07 - 16.12) MB+0.0%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 21)21 ± (21 - 21)+0.6%✅⬆️
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms392.22 ± (390.92 - 393.52) ms385.74 ± (384.40 - 387.07) ms-1.7%
process.time_to_main_ms549.42 ± (548.27 - 550.58) ms540.24 ± (539.04 - 541.45) ms-1.7%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed59.11 ± (58.94 - 59.29) MB57.63 ± (57.48 - 57.79) MB-2.5%
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)-0.9%
.NET 6 - Baseline
process.internal_duration_ms203.46 ± (203.09 - 203.84) ms200.55 ± (200.14 - 200.95) ms-1.4%
process.time_to_main_ms74.97 ± (74.73 - 75.22) ms74.09 ± (73.84 - 74.35) ms-1.2%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.35 ± (16.33 - 16.37) MB16.42 ± (16.40 - 16.45) MB+0.5%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+0.7%✅⬆️
.NET 6 - Bailout
process.internal_duration_ms201.85 ± (201.51 - 202.18) ms198.95 ± (198.62 - 199.27) ms-1.4%
process.time_to_main_ms75.65 ± (75.44 - 75.86) ms74.51 ± (74.30 - 74.72) ms-1.5%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.42 ± (16.40 - 16.45) MB16.47 ± (16.45 - 16.49) MB+0.3%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.8%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms586.13 ± (583.37 - 588.88) ms586.11 ± (583.46 - 588.77) ms-0.0%
process.time_to_main_ms555.07 ± (553.87 - 556.27) ms555.05 ± (553.79 - 556.30) ms-0.0%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.47 ± (61.37 - 61.58) MB61.57 ± (61.47 - 61.66) MB+0.2%✅⬆️
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)-0.5%
.NET 8 - Baseline
process.internal_duration_ms199.33 ± (198.84 - 199.81) ms198.41 ± (197.96 - 198.87) ms-0.5%
process.time_to_main_ms73.09 ± (72.86 - 73.33) ms73.28 ± (73.03 - 73.53) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.71 ± (11.69 - 11.73) MB11.74 ± (11.72 - 11.76) MB+0.3%✅⬆️
runtime.dotnet.threads.count19 ± (18 - 19)18 ± (18 - 18)-1.4%
.NET 8 - Bailout
process.internal_duration_ms198.13 ± (197.70 - 198.55) ms198.30 ± (197.89 - 198.71) ms+0.1%✅⬆️
process.time_to_main_ms74.29 ± (74.07 - 74.52) ms74.57 ± (74.32 - 74.81) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.75 ± (11.73 - 11.77) MB11.78 ± (11.76 - 11.79) MB+0.2%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+0.1%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms516.69 ± (513.70 - 519.67) ms508.79 ± (506.19 - 511.39) ms-1.5%
process.time_to_main_ms502.54 ± (501.61 - 503.47) ms502.26 ± (501.35 - 503.16) ms-0.1%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed50.92 ± (50.88 - 50.96) MB50.94 ± (50.91 - 50.97) MB+0.0%✅⬆️
runtime.dotnet.threads.count30 ± (29 - 30)30 ± (29 - 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 (8832) - mean (70ms)  : 68, 72
    master - mean (70ms)  : 68, 73

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

    section CallTarget+Inlining+NGEN
    This PR (8832) - mean (1,080ms)  : 1028, 1131
    master - mean (1,083ms)  : 1033, 1133

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 (8832) - mean (108ms)  : 105, 111
    master - mean (109ms)  : 106, 113

    section Bailout
    This PR (8832) - mean (109ms)  : 107, 111
    master - mean (110ms)  : 109, 112

    section CallTarget+Inlining+NGEN
    This PR (8832) - mean (777ms)  : 754, 800
    master - mean (774ms)  : 754, 795

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

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

    section CallTarget+Inlining+NGEN
    This PR (8832) - mean (937ms)  : 906, 969
    master - mean (942ms)  : 900, 984

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8832) - mean (99ms)  : 95, 103
    master - mean (95ms)  : 92, 97

    section Bailout
    This PR (8832) - mean (98ms)  : 94, 102
    master - mean (96ms)  : 94, 98

    section CallTarget+Inlining+NGEN
    This PR (8832) - mean (813ms)  : 780, 846
    master - mean (813ms)  : 777, 849

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 (8832) - mean (201ms)  : 195, 206
    master - mean (205ms)  : 200, 210

    section Bailout
    This PR (8832) - mean (205ms)  : 201, 209
    master - mean (209ms)  : 204, 213

    section CallTarget+Inlining+NGEN
    This PR (8832) - mean (1,207ms)  : 1172, 1242
    master - mean (1,216ms)  : 1169, 1264

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 (8832) - mean (288ms)  : 283, 294
    master - mean (293ms)  : 285, 301

    section Bailout
    This PR (8832) - mean (289ms)  : 283, 295
    master - mean (295ms)  : 288, 301

    section CallTarget+Inlining+NGEN
    This PR (8832) - mean (965ms)  : 938, 992
    master - mean (986ms)  : 966, 1006

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8832) - mean (284ms)  : 278, 290
    master - mean (288ms)  : 282, 294

    section Bailout
    This PR (8832) - mean (283ms)  : 279, 288
    master - mean (287ms)  : 282, 291

    section CallTarget+Inlining+NGEN
    This PR (8832) - mean (1,174ms)  : 1141, 1207
    master - mean (1,173ms)  : 1138, 1208

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8832) - mean (282ms)  : 275, 289
    master - mean (283ms)  : 274, 291

    section Bailout
    This PR (8832) - mean (283ms)  : 276, 290
    master - mean (283ms)  : 277, 288

    section CallTarget+Inlining+NGEN
    This PR (8832) - mean (1,043ms)  : 1001, 1086
    master - mean (1,049ms)  : 994, 1104

Loading

@pr-commenter

pr-commenter Bot commented Jun 25, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-06-26 10:31:39

Comparing candidate commit 0a02348 in PR branch feat/ci-coverage-ipc-reference-payload with baseline commit 51ca7e7 in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 0 performance regressions! Performance is the same for 72 metrics, 0 unstable metrics, 63 known flaky benchmarks, 63 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 ----------------------------------'

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 [-7212.672op/s; -6756.893op/s] or [-8.552%; -8.012%]

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

  • 🟥 throughput [-8409.280op/s; -6527.980op/s] or [-8.550%; -6.638%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+298.914ms; +300.570ms] or [+148.332%; +149.153%]
  • 🟥 throughput [-46.908op/s; -43.257op/s] or [-8.440%; -7.783%]

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

  • 🟥 execution_time [+374.917ms; +378.577ms] or [+296.208%; +299.099%]
  • 🟩 throughput [+91.490op/s; +95.491op/s] or [+12.063%; +12.590%]

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

  • 🟥 execution_time [+397.361ms; +400.120ms] or [+351.649%; +354.091%]

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.558ms; -12.384ms] or [-7.733%; -5.784%]

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 [-277350.673op/s; -272662.042op/s] or [-28.319%; -27.840%]

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

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+38.557%; +38.566%]
  • 🟩 execution_time [-26.228ms; -21.367ms] or [-11.697%; -9.529%]

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

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+105.288%; +105.304%]
  • 🟥 throughput [-159174.441op/s; -141084.447op/s] or [-22.870%; -20.271%]

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

  • 🟩 throughput [+9876.409op/s; +12759.401op/s] or [+6.284%; +8.119%]

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

  • 🟩 throughput [+8096.264op/s; +10746.709op/s] or [+6.450%; +8.561%]

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

  • 🟩 throughput [+473725.967op/s; +490893.754op/s] or [+15.796%; +16.368%]

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

  • 🟩 execution_time [-18.837ms; -14.504ms] or [-8.683%; -6.686%]
  • 🟩 throughput [+143977.355op/s; +202478.494op/s] or [+5.715%; +8.037%]

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

  • 🟥 execution_time [+300.170ms; +301.041ms] or [+149.985%; +150.420%]

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

  • 🟥 execution_time [+296.936ms; +311.205ms] or [+149.746%; +156.941%]

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

  • 🟥 execution_time [+300.365ms; +303.734ms] or [+151.301%; +152.998%]

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

  • 🟥 execution_time [+298.976ms; +299.963ms] or [+146.845%; +147.330%]

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

  • 🟥 execution_time [+295.461ms; +298.898ms] or [+144.440%; +146.120%]

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

  • 🟥 execution_time [+304.128ms; +305.870ms] or [+152.003%; +152.874%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark netcoreapp3.1

  • 🟥 execution_time [+23.745µs; +45.811µs] or [+5.087%; +9.815%]
  • 🟥 throughput [-212.697op/s; -131.543op/s] or [-9.819%; -6.072%]

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

  • 🟥 execution_time [+22.965µs; +46.641µs] or [+7.331%; +14.890%]
  • 🟥 throughput [-433.685op/s; -234.491op/s] or [-13.519%; -7.310%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+300.149ms; +301.040ms] or [+149.805%; +150.250%]

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

  • 🟥 execution_time [+416.515ms; +424.749ms] or [+452.561%; +461.507%]
  • 🟩 throughput [+769.436op/s; +975.083op/s] or [+6.323%; +8.012%]

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

  • unstable execution_time [+297.792ms; +348.068ms] or [+226.111%; +264.284%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • unstable execution_time [+251.405ms; +312.202ms] or [+115.593%; +143.547%]
  • 🟥 throughput [-550.557op/s; -494.385op/s] or [-49.886%; -44.796%]

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

  • unstable execution_time [+205.895ms; +339.203ms] or [+87.744%; +144.554%]
  • 🟥 throughput [-676.617op/s; -592.965op/s] or [-45.131%; -39.551%]

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

  • 🟥 allocated_mem [+2.122KB; +2.125KB] or [+5.010%; +5.018%]
  • 🟥 execution_time [+344.627ms; +353.634ms] or [+206.127%; +211.514%]
  • 🟥 throughput [-394.210op/s; -356.965op/s] or [-27.448%; -24.855%]

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

  • 🟩 execution_time [-156.992µs; -109.049µs] or [-7.953%; -5.524%]
  • 🟩 throughput [+31.468op/s; +43.759op/s] or [+6.212%; +8.638%]

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

  • unstable throughput [+12.430op/s; +50.016op/s] or [+4.901%; +19.723%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+302.771ms; +305.168ms] or [+152.470%; +153.677%]

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

  • 🟥 execution_time [+301.232ms; +302.631ms] or [+150.948%; +151.649%]

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

  • 🟥 execution_time [+302.044ms; +305.558ms] or [+151.734%; +153.499%]
  • 🟩 throughput [+26813.018op/s; +34515.284op/s] or [+5.648%; +7.271%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+300.023ms; +301.851ms] or [+150.661%; +151.579%]

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

  • 🟥 execution_time [+296.724ms; +300.778ms] or [+146.717%; +148.721%]

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

  • 🟥 execution_time [+303.894ms; +307.808ms] or [+154.027%; +156.011%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+299.586ms; +301.913ms] or [+150.365%; +151.533%]

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

  • 🟥 execution_time [+300.502ms; +302.706ms] or [+149.773%; +150.871%]
  • 🟩 throughput [+46149.503op/s; +52088.715op/s] or [+9.164%; +10.343%]

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

  • 🟥 execution_time [+302.327ms; +306.849ms] or [+150.405%; +152.655%]

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

  • 🟩 execution_time [-16.784ms; -13.146ms] or [-7.805%; -6.113%]

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

  • unstable execution_time [+4.184µs; +47.266µs] or [+1.034%; +11.675%]

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

  • 🟩 allocated_mem [-17.909KB; -17.886KB] or [-6.533%; -6.524%]
  • unstable execution_time [-22.588µs; +33.435µs] or [-4.464%; +6.608%]

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

  • unstable execution_time [-58.954µs; +2.133µs] or [-10.216%; +0.370%]

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

  • unstable execution_time [+6.749µs; +12.077µs] or [+15.954%; +28.547%]
  • 🟥 throughput [-5128.229op/s; -3155.759op/s] or [-21.588%; -13.285%]

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

  • unstable execution_time [-16.093µs; -8.853µs] or [-24.967%; -13.736%]
  • 🟩 throughput [+2335.778op/s; +3906.284op/s] or [+14.331%; +23.966%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+300.489ms; +301.758ms] or [+151.884%; +152.525%]

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

  • 🟥 execution_time [+302.859ms; +305.634ms] or [+154.154%; +155.567%]

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

  • 🟥 execution_time [+299.318ms; +302.849ms] or [+149.846%; +151.613%]

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

  • 🟩 throughput [+28384.907op/s; +37110.534op/s] or [+5.373%; +7.024%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+300.865ms; +303.782ms] or [+149.954%; +151.408%]

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

  • 🟥 execution_time [+299.188ms; +301.026ms] or [+150.238%; +151.161%]

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

  • 🟥 execution_time [+302.789ms; +305.472ms] or [+153.555%; +154.916%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+299.507ms; +300.340ms] or [+149.395%; +149.811%]
  • 🟩 throughput [+66056145.232op/s; +66390719.333op/s] or [+48.106%; +48.350%]

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

  • unstable execution_time [+270.981ms; +351.240ms] or [+337.014%; +436.829%]

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

  • 🟥 execution_time [+299.340ms; +300.442ms] or [+149.304%; +149.854%]
  • 🟩 throughput [+18006988.350op/s; +18985872.179op/s] or [+7.976%; +8.409%]

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

  • 🟩 throughput [+99000.385op/s; +108707.104op/s] or [+9.243%; +10.150%]

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

  • 🟩 throughput [+49886.358op/s; +69330.109op/s] or [+5.774%; +8.025%]

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

  • 🟩 throughput [+98572.886op/s; +128307.520op/s] or [+7.630%; +9.931%]

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

  • 🟩 throughput [+86824.159op/s; +94202.468op/s] or [+8.623%; +9.356%]

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

  • 🟩 throughput [+54444.457op/s; +60011.545op/s] or [+9.886%; +10.897%]

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

  • 🟩 throughput [+28296.676op/s; +38297.772op/s] or [+6.334%; +8.572%]

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

  • 🟩 throughput [+86228.801op/s; +106901.400op/s] or [+9.634%; +11.944%]

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.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.OptimizedCharSliceWithPool netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net472
  • 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 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

@tonyredondo
tonyredondo marked this pull request as ready for review June 26, 2026 08:21
@tonyredondo
tonyredondo requested review from a team as code owners June 26, 2026 08:21

@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: 50d6bbfae2

ℹ️ 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".

Comment thread tracer/src/Datadog.Trace/Ci/TestSession.cs

@andrewlock andrewlock left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

LGTM, though I confess to only having a vague understanding of how all these bits fit together 😬

Comment thread tracer/src/Datadog.Trace/Ci/Coverage/Backfill/CoverageBackfillDataStore.cs Outdated
Comment thread tracer/src/Datadog.Trace/Ci/TestSession.cs
@tonyredondo
tonyredondo merged commit 955a7f0 into master Jun 26, 2026
142 checks passed
@tonyredondo
tonyredondo deleted the feat/ci-coverage-ipc-reference-payload branch June 26, 2026 12:15
@github-actions github-actions Bot added this to the vNext-v3 milestone Jun 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants