Skip to content

[OTLP Logs] Fix ArgumentOutOfRangeException serializing large log batches#8858

Open
NachoEchevarria wants to merge 3 commits into
masterfrom
nacho/OtelException
Open

[OTLP Logs] Fix ArgumentOutOfRangeException serializing large log batches#8858
NachoEchevarria wants to merge 3 commits into
masterfrom
nacho/OtelException

Conversation

@NachoEchevarria

@NachoEchevarria NachoEchevarria commented Jul 1, 2026

Copy link
Copy Markdown
Collaborator

Summary of changes

Fix an ArgumentOutOfRangeException when serializing OTLP log batches that exceed 64 KB, and bound the serialization buffer.

Seen here.

Reason for change

OtlpLogsSerializer.SerializeLogs wrote into a fixed 64 KB buffer with no bounds checking or resizing. Once a batch's serialized size crossed 64 KB, the next write threw ArgumentOutOfRangeException (surfacing in WriteLogRecord due to inlining), the batch failed to send, and it was dropped.

This is rare in practice — error tracking shows very few occurrences — but when it does happen it's a hard failure that silently drops the batch, so it's worth guarding against.

Implementation details

  • Grow the buffer (doubling) and retry serialization on overflow, instead of assuming 64 KB is always enough. Overflow is detected via the ArgumentException/IndexOutOfRangeException the writers already throw; since overflow is the rare case, exception-driven detection keeps the common path allocation-free rather than pre-sizing every batch.
  • Cap growth at a hardcoded 10 MB (matching the default trace payload cap); a batch that still doesn't fit returns null so it's dropped rather than allocating without bound.
  • OtlpExporter logs a warning and reports success on a dropped batch, so the batching sink doesn't trip its circuit breaker for this non-transient case.

Test coverage

Added OtlpLogsSerializerTests: small/empty batches, grow-and-succeed (the original crash repro), oversized batch returns null, and start-position handling.

Other details

@NachoEchevarria NachoEchevarria changed the title Nacho/otel exception [OTLP Logs] Fix ArgumentOutOfRangeException serializing large log batches Jul 1, 2026
@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 (8858) 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
duration72.17 ± (71.97 - 72.47) ms69.93 ± (69.95 - 70.23) ms-3.1%
.NET Framework 4.8 - Bailout
duration74.38 ± (74.44 - 74.76) ms76.23 ± (76.21 - 76.72) ms+2.5%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1079.32 ± (1077.86 - 1085.02) ms1082.92 ± (1083.67 - 1090.40) ms+0.3%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms22.25 ± (22.20 - 22.29) ms22.29 ± (22.25 - 22.33) ms+0.2%✅⬆️
process.time_to_main_ms81.96 ± (81.69 - 82.22) ms80.99 ± (80.74 - 81.23) ms-1.2%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.92 ± (10.92 - 10.93) 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_ms22.00 ± (21.97 - 22.03) ms22.42 ± (22.37 - 22.46) ms+1.9%✅⬆️
process.time_to_main_ms81.43 ± (81.31 - 81.55) ms84.62 ± (84.34 - 84.90) ms+3.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.95 ± (10.94 - 10.95) MB10.95 ± (10.94 - 10.95) MB-0.0%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms210.80 ± (209.85 - 211.74) ms207.91 ± (206.95 - 208.87) ms-1.4%
process.time_to_main_ms528.86 ± (527.51 - 530.22) ms526.27 ± (524.98 - 527.55) ms-0.5%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.71 ± (48.67 - 48.75) MB48.73 ± (48.68 - 48.77) MB+0.0%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.3%
.NET 6 - Baseline
process.internal_duration_ms21.17 ± (21.12 - 21.21) ms21.39 ± (21.34 - 21.44) ms+1.1%✅⬆️
process.time_to_main_ms71.62 ± (71.39 - 71.85) ms72.76 ± (72.50 - 73.02) ms+1.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.63 ± (10.63 - 10.63) MB10.64 ± (10.63 - 10.64) MB+0.1%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.70 ± (20.66 - 20.74) ms20.90 ± (20.87 - 20.92) ms+0.9%✅⬆️
process.time_to_main_ms70.56 ± (70.43 - 70.69) ms71.35 ± (71.20 - 71.50) ms+1.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.74 ± (10.73 - 10.74) MB10.75 ± (10.75 - 10.75) MB+0.1%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms370.83 ± (368.41 - 373.25) ms370.39 ± (367.77 - 373.02) ms-0.1%
process.time_to_main_ms535.09 ± (533.93 - 536.25) ms534.80 ± (533.44 - 536.16) ms-0.1%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed50.19 ± (50.17 - 50.21) MB50.14 ± (50.12 - 50.17) MB-0.1%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.0%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms19.21 ± (19.17 - 19.25) ms19.05 ± (19.02 - 19.08) ms-0.8%
process.time_to_main_ms68.90 ± (68.77 - 69.03) ms68.49 ± (68.37 - 68.61) ms-0.6%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.71 ± (7.70 - 7.72) MB7.69 ± (7.68 - 7.69) MB-0.3%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.34 ± (19.30 - 19.38) ms19.18 ± (19.14 - 19.23) ms-0.8%
process.time_to_main_ms71.74 ± (71.48 - 72.00) ms71.88 ± (71.58 - 72.18) ms+0.2%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.72 ± (7.71 - 7.72) MB7.76 ± (7.75 - 7.76) MB+0.5%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms295.73 ± (293.60 - 297.85) ms300.06 ± (298.03 - 302.08) ms+1.5%✅⬆️
process.time_to_main_ms484.56 ± (483.43 - 485.69) ms484.82 ± (483.71 - 485.93) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed37.08 ± (37.05 - 37.10) MB37.17 ± (37.15 - 37.20) MB+0.3%✅⬆️
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)-0.1%

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration201.35 ± (200.82 - 201.62) ms204.09 ± (204.07 - 204.83) ms+1.4%✅⬆️
.NET Framework 4.8 - Bailout
duration205.93 ± (205.52 - 206.18) ms208.74 ± (207.99 - 209.00) ms+1.4%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1202.75 ± (1202.38 - 1207.66) ms1213.65 ± (1214.67 - 1221.42) ms+0.9%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms194.27 ± (193.82 - 194.72) ms198.78 ± (198.34 - 199.22) ms+2.3%✅⬆️
process.time_to_main_ms84.26 ± (83.96 - 84.56) ms86.52 ± (86.23 - 86.81) ms+2.7%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.03 ± (16.00 - 16.05) MB16.04 ± (16.02 - 16.07) MB+0.1%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+1.2%✅⬆️
.NET Core 3.1 - Bailout
process.internal_duration_ms194.05 ± (193.66 - 194.44) ms200.46 ± (199.85 - 201.07) ms+3.3%✅⬆️
process.time_to_main_ms85.62 ± (85.40 - 85.84) ms88.66 ± (88.45 - 88.86) ms+3.5%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.09 ± (16.06 - 16.12) MB16.03 ± (16.01 - 16.05) MB-0.4%
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (21 - 21)+0.8%✅⬆️
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms389.57 ± (388.36 - 390.77) ms397.25 ± (395.88 - 398.62) ms+2.0%✅⬆️
process.time_to_main_ms545.08 ± (543.82 - 546.34) ms556.05 ± (554.32 - 557.78) ms+2.0%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed57.90 ± (57.70 - 58.11) MB59.51 ± (59.43 - 59.58) MB+2.8%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)+1.0%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms200.82 ± (200.31 - 201.33) ms208.78 ± (208.25 - 209.31) ms+4.0%✅⬆️
process.time_to_main_ms74.57 ± (74.33 - 74.81) ms76.57 ± (76.33 - 76.81) ms+2.7%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.33 ± (16.31 - 16.36) MB16.33 ± (16.32 - 16.35) MB-0.0%
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 20)+2.0%✅⬆️
.NET 6 - Bailout
process.internal_duration_ms200.29 ± (199.91 - 200.67) ms209.69 ± (209.17 - 210.21) ms+4.7%✅⬆️
process.time_to_main_ms75.14 ± (74.97 - 75.31) ms78.34 ± (78.05 - 78.63) ms+4.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.46 ± (16.44 - 16.49) MB16.35 ± (16.32 - 16.37) MB-0.7%
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+1.3%✅⬆️
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms582.44 ± (579.82 - 585.05) ms579.41 ± (576.93 - 581.89) ms-0.5%
process.time_to_main_ms553.66 ± (552.62 - 554.70) ms572.75 ± (571.27 - 574.22) ms+3.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.26 ± (61.18 - 61.35) MB61.14 ± (61.06 - 61.22) MB-0.2%
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)-0.4%
.NET 8 - Baseline
process.internal_duration_ms198.65 ± (198.15 - 199.15) ms204.09 ± (203.48 - 204.71) ms+2.7%✅⬆️
process.time_to_main_ms73.05 ± (72.81 - 73.28) ms75.41 ± (75.16 - 75.67) ms+3.2%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.70 ± (11.68 - 11.72) MB11.68 ± (11.67 - 11.70) MB-0.2%
runtime.dotnet.threads.count18 ± (18 - 18)19 ± (19 - 19)+1.7%✅⬆️
.NET 8 - Bailout
process.internal_duration_ms198.16 ± (197.78 - 198.53) ms205.28 ± (204.60 - 205.95) ms+3.6%✅⬆️
process.time_to_main_ms74.27 ± (74.06 - 74.48) ms76.95 ± (76.71 - 77.19) ms+3.6%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.74 ± (11.72 - 11.76) MB11.69 ± (11.68 - 11.71) MB-0.4%
runtime.dotnet.threads.count19 ± (19 - 19)20 ± (20 - 20)+2.9%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms514.98 ± (512.24 - 517.71) ms532.08 ± (524.92 - 539.25) ms+3.3%✅⬆️
process.time_to_main_ms502.93 ± (502.06 - 503.81) ms520.20 ± (519.16 - 521.25) ms+3.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed51.00 ± (50.96 - 51.04) MB51.22 ± (51.14 - 51.31) MB+0.4%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)+0.4%✅⬆️
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 (8858) - mean (70ms)  : 68, 72
    master - mean (72ms)  : 68, 76

    section Bailout
    This PR (8858) - mean (76ms)  : 73, 80
    master - mean (75ms)  : 72, 77

    section CallTarget+Inlining+NGEN
    This PR (8858) - mean (1,087ms)  : 1039, 1135
    master - mean (1,081ms)  : 1030, 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 (8858) - mean (110ms)  : 105, 115
    master - mean (111ms)  : 106, 117

    section Bailout
    This PR (8858) - mean (115ms)  : 109, 120
    master - mean (110ms)  : 108, 112

    section CallTarget+Inlining+NGEN
    This PR (8858) - mean (773ms)  : 750, 796
    master - mean (776ms)  : 756, 796

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8858) - mean (101ms)  : 95, 107
    master - mean (99ms)  : 95, 104

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

    section CallTarget+Inlining+NGEN
    This PR (8858) - mean (935ms)  : 885, 986
    master - mean (937ms)  : 898, 976

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

    section Bailout
    This PR (8858) - mean (99ms)  : 91, 106
    master - mean (99ms)  : 93, 106

    section CallTarget+Inlining+NGEN
    This PR (8858) - mean (815ms)  : 774, 855
    master - mean (810ms)  : 770, 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 (8858) - mean (204ms)  : 200, 208
    master - mean (201ms)  : 196, 206

    section Bailout
    This PR (8858) - mean (208ms)  : 203, 214
    master - mean (206ms)  : 203, 209

    section CallTarget+Inlining+NGEN
    This PR (8858) - mean (1,218ms)  : 1169, 1267
    master - mean (1,205ms)  : 1170, 1240

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 (8858) - mean (296ms)  : 289, 303
    master - mean (288ms)  : 281, 295

    section Bailout
    This PR (8858) - mean (300ms)  : 287, 312
    master - mean (289ms)  : 284, 295

    section CallTarget+Inlining+NGEN
    This PR (8858) - mean (998ms)  : 974, 1022
    master - mean (975ms)  : 949, 1000

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8858) - mean (295ms)  : 285, 305
    master - mean (285ms)  : 279, 290

    section Bailout
    This PR (8858) - mean (297ms)  : 287, 307
    master - mean (285ms)  : 280, 289

    section CallTarget+Inlining+NGEN
    This PR (8858) - mean (1,193ms)  : 1160, 1226
    master - mean (1,170ms)  : 1134, 1207

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

    section Bailout
    This PR (8858) - mean (293ms)  : 280, 306
    master - mean (283ms)  : 277, 289

    section CallTarget+Inlining+NGEN
    This PR (8858) - mean (1,092ms)  : 977, 1207
    master - mean (1,049ms)  : 1006, 1092

Loading

@NachoEchevarria NachoEchevarria marked this pull request as ready for review July 1, 2026 11:45
@NachoEchevarria NachoEchevarria requested a review from a team as a code owner July 1, 2026 11:45
}

var buffer = new byte[64 * 1024];
var buffer = new byte[InitialBufferSize];

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.

I know not introduced here, but I wonder if we should be using an array pool for this? 🤔 If so, then the caller would need to own the pool, so we would have to move all this logic up into the exporter, and convert this into an API like this?

    public static boot TrySerializeLogs(IReadOnlyList<LogPoint> logs, byte[] buffer, ResourceTags settings, int startPosition = 0)

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

I think we should do it, but probably, in a subsequent PR, WDYT?

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.

Maybe, but it would mean changing most of the code you added here, seeing as all the retry logic would need to move up into OtlpExporter 🤔 I'm fine if you think it's better for a separate PR, it's just it feels like that would undo this one 😄

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

I created a draft alternative PR with the pool array. https://github.com/DataDog/dd-trace-dotnet/pull/8862/changes

// Upper bound for a serialized batch. The buffer grows up to this cap; a batch that still
// doesn't fit is dropped rather than allocating without bound. The intake rejects payloads
// far larger than this anyway, and it matches the default trace payload cap (DD_TRACE_BUFFER_SIZE).
private const int MaxBufferSize = 10 * 1024 * 1024;

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.

Just FYI, for our own log submission, we have a max buffer size of 3MB... 10MB feels like a lot but 🤷‍♂️ 😅

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

3MB seems fine and is aligned with the rest of the code, thanks!

@pr-commenter

pr-commenter Bot commented Jul 1, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-07-01 14:20:42

Comparing candidate commit 206a3f2 in PR branch nacho/OtelException with baseline commit 950b9d5 in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 1 performance regressions! Performance is the same for 71 metrics, 0 unstable metrics, 59 known flaky benchmarks, 67 flaky benchmarks without significant changes.

Explanation

This is an A/B test comparing a candidate commit's performance against that of a baseline commit. Performance changes are noted in the tables below as:

  • 🟩 = significantly better candidate vs. baseline
  • 🟥 = significantly worse candidate vs. baseline

We compute a confidence interval (CI) over the relative difference of means between metrics from the candidate and baseline commits, considering the baseline as the reference.

If the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD), the change is considered significant.

Feel free to reach out to #apm-benchmarking-platform on Slack if you have any questions.

More details about the CI and significant changes

You can imagine this CI as a range of values that is likely to contain the true difference of means between the candidate and baseline commits.

CIs of the difference of means are often centered around 0%, because often changes are not that big:

---------------------------------(------|---^--------)-------------------------------->
                              -0.6%    0%  0.3%     +1.2%
                                 |          |        |
         lower bound of the CI --'          |        |
sample mean (center of the CI) -------------'        |
         upper bound of the CI ----------------------'

As described above, a change is considered significant if the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD).

For instance, for an execution time metric, this confidence interval indicates a significantly worse performance:

----------------------------------------|---------|---(---------^---------)---------->
                                       0%        1%  1.3%      2.2%      3.1%
                                                  |   |         |         |
       significant impact threshold --------------'   |         |         |
                      lower bound of CI --------------'         |         |
       sample mean (center of the CI) --------------------------'         |
                      upper bound of CI ----------------------------------'

scenario:Benchmarks.Trace.HttpClientBenchmark.SendAsync net472

  • 🟥 throughput [-5944.503op/s; -5345.788op/s] or [-6.786%; -6.103%]

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 [-9102.577op/s; -8505.792op/s] or [-10.793%; -10.085%]

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

  • 🟥 throughput [-9736.066op/s; -6559.770op/s] or [-9.899%; -6.670%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+302.096ms; +308.153ms] or [+149.910%; +152.916%]
  • 🟥 throughput [-46.166op/s; -42.300op/s] or [-8.306%; -7.611%]

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

  • 🟥 execution_time [+377.726ms; +379.717ms] or [+298.427%; +299.999%]
  • 🟩 throughput [+88.001op/s; +92.227op/s] or [+11.603%; +12.160%]

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

  • 🟥 execution_time [+393.267ms; +397.307ms] or [+348.027%; +351.601%]

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.070ms; -11.893ms] or [-7.505%; -5.554%]

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 [-275296.109op/s; -270218.477op/s] or [-28.109%; -27.591%]

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

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+38.557%; +38.566%]
  • 🟩 execution_time [-26.086ms; -21.207ms] or [-11.633%; -9.457%]

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

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+105.288%; +105.304%]
  • 🟥 throughput [-150030.736op/s; -134218.414op/s] or [-21.557%; -19.285%]

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

  • 🟩 throughput [+7758.898op/s; +10446.187op/s] or [+6.181%; +8.322%]

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

  • 🟩 throughput [+426015.688op/s; +453702.904op/s] or [+14.205%; +15.128%]

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

  • 🟩 execution_time [-19.212ms; -14.876ms] or [-8.856%; -6.857%]
  • 🟩 throughput [+157468.310op/s; +215059.577op/s] or [+6.250%; +8.536%]

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

  • 🟥 execution_time [+300.371ms; +303.609ms] or [+150.085%; +151.703%]

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

  • 🟥 execution_time [+299.211ms; +302.495ms] or [+150.893%; +152.549%]

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

  • 🟥 execution_time [+299.865ms; +303.274ms] or [+151.048%; +152.766%]

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

  • 🟥 execution_time [+296.795ms; +298.290ms] or [+145.774%; +146.508%]

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

  • 🟥 execution_time [+292.839ms; +296.485ms] or [+143.158%; +144.941%]

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

  • 🟥 execution_time [+299.910ms; +301.541ms] or [+149.895%; +150.710%]

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

  • 🟥 execution_time [+20.641µs; +44.296µs] or [+6.590%; +14.142%]
  • 🟥 throughput [-414.284op/s; -215.220op/s] or [-12.914%; -6.709%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+300.036ms; +300.714ms] or [+149.749%; +150.087%]

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

  • 🟥 execution_time [+407.571ms; +416.769ms] or [+442.842%; +452.837%]
  • 🟩 throughput [+678.219op/s; +848.649op/s] or [+5.573%; +6.973%]

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

  • unstable execution_time [+301.710ms; +352.660ms] or [+229.086%; +267.772%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • unstable execution_time [+306.841ms; +378.788ms] or [+141.083%; +174.163%]
  • 🟥 throughput [-603.780op/s; -548.829op/s] or [-54.708%; -49.729%]

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

  • unstable execution_time [+144.826ms; +290.876ms] or [+61.719%; +123.959%]
  • 🟥 throughput [-671.089op/s; -587.580op/s] or [-44.762%; -39.192%]

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

  • 🟥 execution_time [+336.725ms; +348.453ms] or [+201.400%; +208.416%]
  • 🟥 throughput [-418.808op/s; -379.010op/s] or [-29.161%; -26.390%]

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

  • 🟩 throughput [+28.598op/s; +43.433op/s] or [+5.645%; +8.574%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+303.653ms; +305.118ms] or [+152.914%; +153.651%]

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

  • 🟥 execution_time [+301.769ms; +303.570ms] or [+151.217%; +152.119%]

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

  • 🟥 execution_time [+302.581ms; +306.103ms] or [+152.004%; +153.773%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+302.030ms; +304.969ms] or [+151.670%; +153.145%]

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

  • 🟥 execution_time [+298.713ms; +301.254ms] or [+147.700%; +148.957%]

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

  • 🟥 execution_time [+305.007ms; +308.947ms] or [+154.591%; +156.588%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+302.467ms; +305.233ms] or [+151.811%; +153.200%]

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

  • 🟥 execution_time [+300.216ms; +301.993ms] or [+149.630%; +150.516%]
  • 🟩 throughput [+42901.315op/s; +47819.784op/s] or [+8.519%; +9.495%]

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

  • 🟥 execution_time [+301.405ms; +305.684ms] or [+149.946%; +152.075%]

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

  • 🟩 execution_time [-16.612ms; -12.950ms] or [-7.725%; -6.022%]
  • 🟩 throughput [+22063.613op/s; +29106.414op/s] or [+6.053%; +7.985%]

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

  • unstable execution_time [+9.458µs; +57.181µs] or [+2.336%; +14.124%]

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

  • 🟩 allocated_mem [-19.456KB; -19.432KB] or [-7.097%; -7.088%]
  • unstable execution_time [-25.529µs; +32.263µs] or [-5.046%; +6.377%]
  • unstable throughput [-116.587op/s; +85.198op/s] or [-5.818%; +4.251%]

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

  • unstable execution_time [-73.349µs; -14.092µs] or [-12.711%; -2.442%]

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

  • unstable execution_time [+5.409µs; +9.886µs] or [+12.784%; +23.368%]
  • 🟥 throughput [-4495.755op/s; -2668.651op/s] or [-18.926%; -11.234%]

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

  • unstable execution_time [-14.838µs; -7.360µs] or [-23.021%; -11.418%]
  • 🟩 throughput [+1857.052op/s; +3474.027op/s] or [+11.394%; +21.314%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+302.442ms; +303.806ms] or [+152.871%; +153.560%]

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

  • 🟥 execution_time [+303.933ms; +306.347ms] or [+154.701%; +155.930%]

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

  • 🟥 execution_time [+301.902ms; +305.099ms] or [+151.139%; +152.740%]

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

  • 🟩 throughput [+33525.658op/s; +36740.651op/s] or [+6.346%; +6.954%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+296.827ms; +299.143ms] or [+147.942%; +149.096%]

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

  • 🟥 execution_time [+301.320ms; +302.834ms] or [+151.309%; +152.069%]

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

  • 🟥 execution_time [+302.623ms; +305.035ms] or [+153.471%; +154.694%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+299.255ms; +300.366ms] or [+149.270%; +149.824%]
  • 🟩 throughput [+61225183.369op/s; +61552679.021op/s] or [+44.588%; +44.826%]

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

  • 🟥 execution_time [+419.853ms; +423.534ms] or [+522.162%; +526.740%]

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

  • 🟥 execution_time [+300.033ms; +301.114ms] or [+149.650%; +150.189%]

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

  • 🟩 throughput [+68581.294op/s; +83863.224op/s] or [+6.403%; +7.830%]

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

  • 🟩 throughput [+53534.877op/s; +73231.078op/s] or [+6.197%; +8.476%]

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

  • 🟩 throughput [+74578.414op/s; +105029.075op/s] or [+5.773%; +8.129%]

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

  • 🟩 throughput [+81162.716op/s; +91783.760op/s] or [+8.061%; +9.116%]

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

  • 🟩 throughput [+51272.645op/s; +55944.286op/s] or [+9.310%; +10.158%]

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

  • 🟩 throughput [+87097.742op/s; +108120.894op/s] or [+9.731%; +12.080%]

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.ObjectExtractorMoreComplexBody net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark netcoreapp3.1
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net472
  • scenario:Benchmarks.Trace.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.SpanBenchmark.StartFinishTwoScopes netcoreapp3.1
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin netcoreapp3.1

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