Skip to content

test(profiling): bump OOM extension size to 20MB for Node 22+ headroom#8564

Merged
BridgeAR merged 2 commits into
masterfrom
szegedi/profiler-oom-test-headroom
May 22, 2026
Merged

test(profiling): bump OOM extension size to 20MB for Node 22+ headroom#8564
BridgeAR merged 2 commits into
masterfrom
szegedi/profiler-oom-test-headroom

Conversation

@szegedi
Copy link
Copy Markdown
Contributor

@szegedi szegedi commented May 20, 2026

Summary

  • Bumps DD_PROFILING_EXPERIMENTAL_OOM_HEAP_LIMIT_EXTENSION_SIZE from 15MB to 20MB in the sends a heap profile on OOM with external process and exits successfully integration test.
  • Fixes consistent failure on Node 22.22.3 on Linux (see runs/26103407048 and runs/26095944574).

Root cause

On Node 22.22.3 on Linux, V8 aborts with FATAL ERROR: Ineffective mark-compacts near heap limit (not the more familiar Reached heap limit). That's a separate V8 abort path in Heap::CheckIneffectiveMarkCompact: after 4 consecutive Mark-Compacts that fail to reclaim "enough" memory, V8 calls FatalProcessOutOfMemory — independently of the near-heap-limit callback. Extending the heap limit doesn't reset the ineffectiveness counter.

The OOM test program allocates 12 × 5MB = 60MB into a leak array under --max-old-space-size=50. With 3 × 15MB extensions, the final budget is 95MB. On Node 18/20 V8's GCs happen to stay "effective" enough to finish; on Node 22's V8 they don't, and the ineffective-GC counter reaches its threshold before the 12 allocations complete.

Why this fix

Raising the per-extension size to 20MB gives V8 more breathing room between OOM events. With more headroom per step, some GCs land in "comfortable" mode, are effective, and reset the consecutive-ineffective counter.

Alternatives considered:

  • Bumping the extension count (3 → 4) keeps each step at 15MB and just gives the program more chances to hit the ineffective-counter limit. Same total budget, worse shape.
  • Skipping the test on Node 22+ loses coverage.

The test still exercises 3 OOM events (50 → 70 → 90 → 110MB), so coverage of the multi-OOM recovery path is preserved.

Test plan

  • CI: Profiling integration tests pass on Node 18, 20, 22, 24.

… 22+

The "sends a heap profile on OOM with external process and exits
successfully" test consistently fails on Node 22.22.3 on Linux. With
3 extensions of 15MB each (50MB initial + 45MB), V8 finishes the test
program's 12 x 5MB allocations only by a narrow margin. On Node 22's
V8, the GCs running under tight-heap pressure trigger V8's separate
"Ineffective mark-compacts near heap limit" abort path (independent
of the near-heap-limit callback) before the program completes.

Raising each extension to 20MB gives V8 more breathing room between
OOM events, making individual GCs more likely to be "effective" and
keeping V8's consecutive-ineffective-GC counter from reaching its
threshold. The test still exercises 3 OOM events; only the per-step
size changes.
@datadog-datadog-prod-us1
Copy link
Copy Markdown

datadog-datadog-prod-us1 Bot commented May 20, 2026

Pipelines  Tests

Fix all issues with BitsAI

⚠️ Warnings

🚦 6 Pipeline jobs failed

DataDog/apm-reliability/dd-trace-js | Ubuntu_20_amd64.SI94: [test-app-nodejs-alpine]   View in Datadog   GitLab

🔧 Fix in code (Fix with Cursor). 1 failed test: Assertion failed. _container_tags_validator failed to validate trace_id: 20996692107700753 in tests/auto_inject/test_auto_inject_install.py:255

DataDog/apm-reliability/dd-trace-js | Ubuntu_20_amd64.SI94: [test-app-nodejs-container]   View in Datadog   GitLab

🔧 Fix in code (Fix with Cursor). 1 failed test. AssertionError: _container_tags_validator failed to validate trace_id: 41474236353765763 at tests/auto_inject/utils.py:79

DataDog/apm-reliability/dd-trace-js | Ubuntu_23_10_arm64.SI94: [test-app-nodejs-alpine]   View in Datadog   GitLab

🔧 Fix in code (Fix with Cursor). AssertionError: _container_tags_validator failed to validate trace_id: 52076126919634372 in tests/auto_inject/utils.py:79 during test_origin_detection.

View all 6 failed jobs.

🧪 1 Test failed in 1 job

APM Integrations | electron   GitHub Actions

Plugin with electron >=37.0.0 (37.0.0) electron without configuration "before each" hook for "should do automatic instrumentation for fetch" from without configuration   View in Datadog (Fix with Cursor)
Timeout of 10000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (/home/runner/work/dd-trace-js/dd-trace-js/packages/datadog-plugin-electron/test/index.spec.js)

Error: Timeout of 10000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (/home/runner/work/dd-trace-js/dd-trace-js/packages/datadog-plugin-electron/test/index.spec.js)
    at listOnTimeout (node:internal/timers:605:17)
    at process.processTimers (node:internal/timers:541:7)

ℹ️ Info

No other issues found (see more)

❄️ No new flaky tests detected

🎯 Code Coverage (details)
Patch Coverage: 100.00%
Overall Coverage: 86.50% (+0.00%)

Useful? React with 👍 / 👎

This comment will be updated automatically if new data arrives.
🔗 Commit SHA: 5be3544 | Docs | Datadog PR Page | Give us feedback!

@dd-octo-sts
Copy link
Copy Markdown
Contributor

dd-octo-sts Bot commented May 20, 2026

Overall package size

Self size: 5.84 MB
Deduped: 6.87 MB
No deduping: 6.87 MB

Dependency sizes | name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 3.0.1 | 82.56 kB | 817.39 kB | | opentracing | 0.14.7 | 194.81 kB | 194.81 kB | | dc-polyfill | 0.1.11 | 25.74 kB | 25.74 kB |

🤖 This report was automatically generated by heaviest-objects-in-the-universe

@codecov
Copy link
Copy Markdown

codecov Bot commented May 20, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 89.76%. Comparing base (f8a6048) to head (5be3544).
⚠️ Report is 19 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #8564      +/-   ##
==========================================
+ Coverage   89.68%   89.76%   +0.08%     
==========================================
  Files         844      844              
  Lines       45730    45733       +3     
  Branches     8527     8529       +2     
==========================================
+ Hits        41013    41054      +41     
+ Misses       4717     4679      -38     
Flag Coverage Δ
aiguard-integration-active 41.25% <ø> (ø)
aiguard-integration-latest 41.20% <ø> (ø)
aiguard-integration-maintenance 41.25% <ø> (ø)
aiguard-macos 34.99% <ø> (-0.09%) ⬇️
aiguard-ubuntu 35.09% <ø> (-0.09%) ⬇️
aiguard-windows 34.85% <ø> (-0.09%) ⬇️
apm-capabilities-tracing-macos 49.24% <ø> (+0.17%) ⬆️
apm-capabilities-tracing-ubuntu-active 49.27% <ø> (+0.17%) ⬆️
apm-capabilities-tracing-ubuntu-latest 49.06% <ø> (ø)
apm-capabilities-tracing-ubuntu-maintenance 49.09% <ø> (-0.18%) ⬇️
apm-capabilities-tracing-ubuntu-oldest 49.25% <ø> (+0.17%) ⬆️
apm-capabilities-tracing-windows 48.88% <ø> (-0.18%) ⬇️
apm-integrations-aerospike-18-gte.5.2.0 34.43% <ø> (-0.09%) ⬇️
apm-integrations-aerospike-20-gte.5.5.0 34.45% <ø> (-0.09%) ⬇️
apm-integrations-aerospike-22-gte.5.12.1 34.45% <ø> (-0.09%) ⬇️
apm-integrations-aerospike-22-gte.6.0.0 34.45% <ø> (-0.09%) ⬇️
apm-integrations-aerospike-eol- 34.36% <ø> (-0.09%) ⬇️
apm-integrations-child-process 35.50% <ø> (-0.09%) ⬇️
apm-integrations-confluentinc-kafka-javascript-18 41.31% <ø> (-0.09%) ⬇️
apm-integrations-confluentinc-kafka-javascript-20 41.33% <ø> (-0.09%) ⬇️
apm-integrations-confluentinc-kafka-javascript-22 41.33% <ø> (-0.09%) ⬇️
apm-integrations-confluentinc-kafka-javascript-24 41.26% <ø> (-0.09%) ⬇️
apm-integrations-couchbase-18 34.69% <ø> (+0.13%) ⬆️
apm-integrations-couchbase-eol 34.63% <ø> (+0.04%) ⬆️
apm-integrations-dns 34.28% <ø> (-0.09%) ⬇️
apm-integrations-elasticsearch 35.22% <ø> (-0.08%) ⬇️
apm-integrations-http-latest 42.18% <ø> (-0.08%) ⬇️
apm-integrations-http-maintenance 42.24% <ø> (-0.08%) ⬇️
apm-integrations-http-oldest 42.24% <ø> (-0.08%) ⬇️
apm-integrations-http2 39.63% <ø> (-0.09%) ⬇️
apm-integrations-kafkajs-latest 41.13% <ø> (+0.02%) ⬆️
apm-integrations-kafkajs-oldest 41.07% <ø> (-0.14%) ⬇️
apm-integrations-net 35.17% <ø> (-0.09%) ⬇️
apm-integrations-next-11.1.4 29.13% <ø> (-0.08%) ⬇️
apm-integrations-next-12.3.7 30.81% <ø> (-0.08%) ⬇️
apm-integrations-next-13.0.0 30.81% <ø> (-0.08%) ⬇️
apm-integrations-next-13.2.0 30.80% <ø> (-0.08%) ⬇️
apm-integrations-next-13.5.11 30.93% <ø> (-0.08%) ⬇️
apm-integrations-next-14.0.0 30.89% <ø> (-0.06%) ⬇️
apm-integrations-next-14.2.35 30.89% <ø> (-0.06%) ⬇️
apm-integrations-next-14.2.6 30.89% <ø> (-0.06%) ⬇️
apm-integrations-next-14.2.7 30.89% <ø> (-0.08%) ⬇️
apm-integrations-next-15.0.0 30.87% <ø> (-0.11%) ⬇️
apm-integrations-next-15.4.0 30.93% <ø> (-0.08%) ⬇️
apm-integrations-oracledb 34.78% <ø> (-0.08%) ⬇️
apm-integrations-prisma-18-gte.6.16.0.and.lt.7.0.0 36.74% <ø> (-0.08%) ⬇️
apm-integrations-prisma-latest-all 35.56% <ø> (-0.08%) ⬇️
apm-integrations-restify 36.53% <ø> (-0.08%) ⬇️
apm-integrations-sharedb 34.00% <ø> (-0.09%) ⬇️
apm-integrations-tedious 34.58% <ø> (-0.08%) ⬇️
appsec-express 52.14% <ø> (-0.05%) ⬇️
appsec-fastify 48.87% <ø> (-0.07%) ⬇️
appsec-graphql 48.94% <ø> (-0.07%) ⬇️
appsec-integration-active 37.04% <ø> (ø)
appsec-integration-latest 37.01% <ø> (ø)
appsec-integration-maintenance 37.05% <ø> (ø)
appsec-integration-oldest 37.05% <ø> (ø)
appsec-kafka 41.60% <ø> (-0.08%) ⬇️
appsec-ldapjs 40.86% <ø> (-0.07%) ⬇️
appsec-lodash 40.93% <ø> (-0.07%) ⬇️
appsec-macos 58.14% <ø> (-0.07%) ⬇️
appsec-mongodb-core 45.41% <ø> (-0.07%) ⬇️
appsec-mongoose 46.31% <ø> (-0.06%) ⬇️
appsec-mysql 48.20% <ø> (-0.06%) ⬇️
appsec-next-latest-11.1.4 29.26% <ø> (-0.08%) ⬇️
appsec-next-latest-12.3.7 30.94% <ø> (-0.08%) ⬇️
appsec-next-latest-13.0.0 30.94% <ø> (-0.08%) ⬇️
appsec-next-latest-13.2.0 30.95% <ø> (-0.08%) ⬇️
appsec-next-latest-13.5.11 31.03% <ø> (-0.08%) ⬇️
appsec-next-latest-14.0.0 30.97% <ø> (-0.08%) ⬇️
appsec-next-latest-14.2.35 30.97% <ø> (-0.08%) ⬇️
appsec-next-latest-14.2.6 30.97% <ø> (-0.08%) ⬇️
appsec-next-latest-14.2.7 30.97% <ø> (-0.08%) ⬇️
appsec-next-latest-15.0.0 30.97% <ø> (-0.08%) ⬇️
appsec-next-latest-latest 30.98% <ø> (-0.08%) ⬇️
appsec-next-oldest-11.1.4 29.28% <ø> (-0.08%) ⬇️
appsec-next-oldest-12.3.7 30.95% <ø> (-0.08%) ⬇️
appsec-next-oldest-13.0.0 30.95% <ø> (-0.08%) ⬇️
appsec-next-oldest-13.2.0 31.23% <ø> (-0.08%) ⬇️
appsec-next-oldest-13.5.11 31.32% <ø> (-0.08%) ⬇️
appsec-next-oldest-14.0.0 31.26% <ø> (-0.08%) ⬇️
appsec-next-oldest-14.2.35 31.26% <ø> (-0.08%) ⬇️
appsec-next-oldest-14.2.6 31.26% <ø> (-0.08%) ⬇️
appsec-next-oldest-14.2.7 31.26% <ø> (-0.08%) ⬇️
appsec-next-oldest-15.0.0 31.26% <ø> (-0.08%) ⬇️
appsec-next-oldest-latest 30.03% <ø> (ø)
appsec-node-serialize 40.15% <ø> (-0.07%) ⬇️
appsec-passport 43.98% <ø> (-0.08%) ⬇️
appsec-postgres 47.87% <ø> (-0.07%) ⬇️
appsec-sourcing 39.55% <ø> (-0.07%) ⬇️
appsec-stripe 41.77% <ø> (-0.08%) ⬇️
appsec-template 40.41% <ø> (-0.07%) ⬇️
appsec-ubuntu 58.22% <ø> (-0.07%) ⬇️
appsec-windows 58.12% <ø> (-0.07%) ⬇️
debugger-ubuntu-active 43.30% <ø> (ø)
debugger-ubuntu-latest 43.25% <ø> (ø)
debugger-ubuntu-maintenance 43.31% <ø> (-0.43%) ⬇️
debugger-ubuntu-oldest 43.75% <ø> (ø)
instrumentations-instrumentation-bluebird 29.36% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-body-parser 37.11% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-child_process 34.90% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-cookie-parser 31.27% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-express 31.48% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-express-mongo-sanitize 31.39% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-express-session 36.81% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-fs 29.05% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-generic-pool 28.68% <ø> (ø)
instrumentations-instrumentation-http 36.31% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-knex 29.34% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-light-my-request 36.69% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-mongoose 30.64% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-multer 36.78% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-mysql2 34.90% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-passport 40.55% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-passport-http 40.22% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-passport-local 40.70% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-pg 34.45% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-promise 29.30% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-promise-js 29.31% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-q 29.34% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-url 29.26% <ø> (-0.09%) ⬇️
instrumentations-instrumentation-when 29.32% <ø> (-0.09%) ⬇️
instrumentations-integration-esbuild-0.16.12-active 19.23% <ø> (ø)
instrumentations-integration-esbuild-0.16.12-latest 19.21% <ø> (ø)
instrumentations-integration-esbuild-0.16.12-maintenance 19.23% <ø> (ø)
instrumentations-integration-esbuild-0.16.12-oldest 19.22% <ø> (ø)
instrumentations-integration-esbuild-latest-active 19.23% <ø> (ø)
instrumentations-integration-esbuild-latest-latest 19.21% <ø> (ø)
instrumentations-integration-esbuild-latest-maintenance 19.23% <ø> (ø)
instrumentations-integration-esbuild-latest-oldest 19.22% <ø> (ø)
llmobs-ai 37.83% <ø> (-0.08%) ⬇️
llmobs-anthropic 37.92% <ø> (-0.08%) ⬇️
llmobs-bedrock 36.56% <ø> (-0.17%) ⬇️
llmobs-google-genai 36.97% <ø> (-0.08%) ⬇️
llmobs-langchain 38.24% <ø> (-0.07%) ⬇️
llmobs-openai-latest 40.49% <ø> (-0.08%) ⬇️
llmobs-openai-oldest 40.53% <ø> (-0.08%) ⬇️
llmobs-sdk-active 45.01% <ø> (-0.09%) ⬇️
llmobs-sdk-latest 44.95% <ø> (-0.09%) ⬇️
llmobs-sdk-maintenance 45.01% <ø> (-0.09%) ⬇️
llmobs-sdk-oldest 45.00% <ø> (-0.09%) ⬇️
llmobs-vertex-ai 37.00% <ø> (-0.08%) ⬇️
master-coverage 89.76% <ø> (?)
openfeature-macos 38.07% <ø> (ø)
openfeature-ubuntu 38.15% <ø> (ø)
openfeature-unit-active 49.27% <ø> (ø)
openfeature-unit-latest 49.11% <ø> (ø)
openfeature-unit-maintenance 49.27% <ø> (ø)
openfeature-unit-oldest 49.27% <ø> (ø)
openfeature-windows 37.93% <ø> (ø)
platform-core 36.45% <ø> (ø)
platform-esbuild 39.82% <ø> (ø)
platform-instrumentations-misc 31.44% <ø> (ø)
platform-integration-active 47.24% <ø> (ø)
platform-integration-latest 47.20% <ø> (+0.04%) ⬆️
platform-integration-maintenance ?
platform-integration-oldest 47.42% <ø> (ø)
platform-shimmer 42.26% <ø> (ø)
platform-unit-guardrails 35.42% <ø> (ø)
platform-webpack 20.36% <ø> (ø)
plugins-azure-event-hubs 34.90% <ø> (ø)
plugins-azure-service-bus 35.40% <ø> (ø)
plugins-bullmq 40.14% <ø> (-0.09%) ⬇️
plugins-cassandra 34.83% <ø> (-0.08%) ⬇️
plugins-cookie 27.41% <ø> (ø)
plugins-cookie-parser 27.14% <ø> (ø)
plugins-crypto 27.27% <ø> (ø)
plugins-dd-trace-api 34.72% <ø> (-0.09%) ⬇️
plugins-express-mongo-sanitize 27.32% <ø> (ø)
plugins-express-session 27.09% <ø> (ø)
plugins-fastify 38.85% <ø> (-0.08%) ⬇️
plugins-fetch 35.18% <ø> (-0.08%) ⬇️
plugins-fs 35.14% <ø> (-0.10%) ⬇️
plugins-generic-pool 25.94% <ø> (ø)
plugins-google-cloud-pubsub 42.38% <ø> (-0.08%) ⬇️
plugins-grpc 37.64% <ø> (-0.08%) ⬇️
plugins-handlebars 27.38% <ø> (ø)
plugins-hapi 36.76% <ø> (-0.08%) ⬇️
plugins-hono 37.05% <ø> (-0.08%) ⬇️
plugins-ioredis 35.38% <ø> (-0.09%) ⬇️
plugins-knex 26.90% <ø> (ø)
plugins-langgraph 34.56% <ø> (-0.09%) ⬇️
plugins-ldapjs 24.07% <ø> (ø)
plugins-light-my-request 26.57% <ø> (ø)
plugins-limitd-client 29.60% <ø> (-0.15%) ⬇️
plugins-lodash 26.05% <ø> (ø)
plugins-mariadb 36.26% <ø> (-0.09%) ⬇️
plugins-memcached 34.88% <ø> (-0.09%) ⬇️
plugins-microgateway-core 35.88% <ø> (-0.09%) ⬇️
plugins-modelcontextprotocol-sdk 33.83% <ø> (-0.09%) ⬇️
plugins-moleculer 37.66% <ø> (-0.08%) ⬇️
plugins-mongodb 36.19% <ø> (-0.19%) ⬇️
plugins-mongodb-core 35.92% <ø> (-0.09%) ⬇️
plugins-mongoose 35.72% <ø> (-0.08%) ⬇️
plugins-multer 27.09% <ø> (ø)
plugins-mysql 35.75% <ø> (-0.09%) ⬇️
plugins-mysql2 35.91% <ø> (-0.09%) ⬇️
plugins-node-serialize 27.47% <ø> (ø)
plugins-opensearch 34.72% <ø> (-0.08%) ⬇️
plugins-passport-http 27.14% <ø> (ø)
plugins-pino 31.35% <ø> (-0.09%) ⬇️
plugins-postgres 35.58% <ø> (-0.09%) ⬇️
plugins-process 27.27% <ø> (ø)
plugins-pug 27.41% <ø> (ø)
plugins-redis 35.37% <ø> (-0.15%) ⬇️
plugins-router 39.25% <ø> (-0.08%) ⬇️
plugins-sequelize 25.64% <ø> (ø)
plugins-test-and-upstream-amqp10 35.08% <ø> (-0.09%) ⬇️
plugins-test-and-upstream-amqplib 40.17% <ø> (-0.09%) ⬇️
plugins-test-and-upstream-apollo 36.07% <ø> (-0.08%) ⬇️
plugins-test-and-upstream-avsc 35.28% <ø> (-0.09%) ⬇️
plugins-test-and-upstream-bunyan 30.73% <ø> (-0.09%) ⬇️
plugins-test-and-upstream-connect 37.45% <ø> (-0.09%) ⬇️
plugins-test-and-upstream-graphql 37.12% <ø> (-0.06%) ⬇️
plugins-test-and-upstream-koa 37.03% <ø> (-0.08%) ⬇️
plugins-test-and-upstream-protobufjs 35.49% <ø> (-0.09%) ⬇️
plugins-test-and-upstream-rhea 40.26% <ø> (-0.09%) ⬇️
plugins-undici 35.75% <ø> (-0.21%) ⬇️
plugins-url 27.27% <ø> (ø)
plugins-valkey 35.02% <ø> (-0.07%) ⬇️
plugins-vm 27.27% <ø> (ø)
plugins-winston 31.25% <ø> (-0.09%) ⬇️
plugins-ws 38.26% <ø> (-0.08%) ⬇️
profiling-macos 42.77% <ø> (-0.07%) ⬇️
profiling-ubuntu 43.18% <ø> (-0.02%) ⬇️
profiling-windows 40.07% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-aws-sdk 34.49% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-bedrockruntime 33.10% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-client 21.74% <ø> (ø)
serverless-aws-sdk-latest-dynamodb 35.47% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-eventbridge 28.62% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-kinesis 38.62% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-lambda 36.05% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-s3 34.00% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-serverless-peer-service 40.67% <ø> (-0.09%) ⬇️
serverless-aws-sdk-latest-sns 39.73% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-sqs 39.22% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-stepfunctions 34.67% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-util 48.38% <ø> (ø)
serverless-aws-sdk-oldest-aws-sdk 34.58% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-bedrockruntime 33.37% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-client ?
serverless-aws-sdk-oldest-dynamodb 35.54% <ø> (-0.13%) ⬇️
serverless-aws-sdk-oldest-eventbridge 28.66% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-kinesis 38.75% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-lambda 36.13% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-s3 34.07% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-serverless-peer-service 40.72% <ø> (-0.09%) ⬇️
serverless-aws-sdk-oldest-sns 39.81% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-sqs 39.12% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-stepfunctions 34.74% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-util 48.68% <ø> (ø)
serverless-azure-durable-functions 36.92% <ø> (?)
serverless-azure-functions-eventhubs 38.55% <ø> (ø)
serverless-azure-functions-servicebus 38.61% <ø> (ø)
serverless-lambda 36.10% <ø> (-0.10%) ⬇️
test-optimization-cucumber-latest-7.0.0 50.32% <ø> (+0.12%) ⬆️
test-optimization-cucumber-latest-latest 53.20% <ø> (+0.12%) ⬆️
test-optimization-cucumber-oldest-7.0.0 50.36% <ø> (+0.12%) ⬆️
test-optimization-cypress-latest-12.0.0-commonJS 48.80% <ø> (-0.04%) ⬇️
test-optimization-cypress-latest-12.0.0-esm 48.83% <ø> (+0.07%) ⬆️
test-optimization-cypress-latest-14.5.4-commonJS 48.65% <ø> (+0.07%) ⬆️
test-optimization-cypress-latest-14.5.4-esm 48.68% <ø> (+0.07%) ⬆️
test-optimization-cypress-latest-latest-commonJS 49.14% <ø> (+0.07%) ⬆️
test-optimization-cypress-latest-latest-esm 49.17% <ø> (+0.07%) ⬆️
test-optimization-cypress-oldest-12.0.0-commonJS 48.84% <ø> (+0.07%) ⬆️
test-optimization-cypress-oldest-12.0.0-esm 48.87% <ø> (+0.07%) ⬆️
test-optimization-cypress-oldest-14.5.4-commonJS 48.68% <ø> (+0.07%) ⬆️
test-optimization-cypress-oldest-14.5.4-esm 48.72% <ø> (+0.07%) ⬆️
test-optimization-jest-latest-latest 54.83% <ø> (+0.08%) ⬆️
test-optimization-jest-latest-oldest 53.65% <ø> (+0.08%) ⬆️
test-optimization-jest-oldest-latest 54.83% <ø> (+0.08%) ⬆️
test-optimization-jest-oldest-oldest 53.55% <ø> (+0.04%) ⬆️
test-optimization-mocha-latest-latest 53.63% <ø> (ø)
test-optimization-mocha-latest-oldest 51.29% <ø> (+0.08%) ⬆️
test-optimization-mocha-oldest-latest 53.70% <ø> (+0.06%) ⬆️
test-optimization-mocha-oldest-oldest 51.26% <ø> (+0.08%) ⬆️
test-optimization-playwright-latest-latest-playwright-active-test-span 44.35% <ø> (+0.28%) ⬆️
test-optimization-playwright-latest-latest-playwright-atr 43.13% <ø> (+0.11%) ⬆️
test-optimization-playwright-latest-latest-playwright-efd 43.55% <ø> (+0.09%) ⬆️
test-optimization-playwright-latest-latest-playwright-final-status 43.61% <ø> (+0.13%) ⬆️
test-optimization-playwright-latest-latest-playwright-impacted-tests 43.06% <ø> (ø)
test-optimization-playwright-latest-latest-playwright-reporting 43.02% <ø> (+0.09%) ⬆️
test-optimization-playwright-latest-latest-playwright-test-management 44.79% <ø> (+0.10%) ⬆️
test-optimization-playwright-latest-oldest-playwright-active-test-span 44.42% <ø> (+0.28%) ⬆️
test-optimization-playwright-latest-oldest-playwright-atr 43.34% <ø> (+0.11%) ⬆️
test-optimization-playwright-latest-oldest-playwright-efd 43.61% <ø> (+0.09%) ⬆️
test-optimization-playwright-latest-oldest-playwright-final-status 43.64% <ø> (+0.08%) ⬆️
test-optimization-playwright-latest-oldest-playwright-impacted-tests 43.11% <ø> (ø)
test-optimization-playwright-latest-oldest-playwright-reporting 43.09% <ø> (+0.09%) ⬆️
test-optimization-playwright-latest-oldest-playwright-test-management 44.86% <ø> (+0.10%) ⬆️
test-optimization-playwright-oldest-latest-playwright-active-test-span 44.39% <ø> (+0.28%) ⬆️
test-optimization-playwright-oldest-latest-playwright-atr 43.17% <ø> (+0.11%) ⬆️
test-optimization-playwright-oldest-latest-playwright-efd 43.57% <ø> (+0.09%) ⬆️
test-optimization-playwright-oldest-latest-playwright-final-status 43.62% <ø> (+0.11%) ⬆️
test-optimization-playwright-oldest-latest-playwright-impacted-tests 43.10% <ø> (ø)
test-optimization-playwright-oldest-latest-playwright-reporting 43.03% <ø> (+0.09%) ⬆️
test-optimization-playwright-oldest-latest-playwright-test-management 44.80% <ø> (+0.10%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-active-test-span 44.46% <ø> (+0.28%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-atr 43.38% <ø> (+0.11%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-efd 43.62% <ø> (+0.09%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-final-status 43.68% <ø> (+0.11%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-impacted-tests 43.15% <ø> (ø)
test-optimization-playwright-oldest-oldest-playwright-reporting 43.10% <ø> (+0.09%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-test-management 44.88% <ø> (+0.10%) ⬆️
test-optimization-selenium-latest 45.57% <ø> (+0.07%) ⬆️
test-optimization-selenium-oldest 45.14% <ø> (+0.07%) ⬆️
test-optimization-testopt-active 46.96% <ø> (+0.13%) ⬆️
test-optimization-testopt-latest 46.92% <ø> (+0.13%) ⬆️
test-optimization-testopt-maintenance 46.96% <ø> (+0.13%) ⬆️
test-optimization-testopt-oldest 47.84% <ø> (+0.14%) ⬆️
test-optimization-vitest-latest 51.22% <ø> (+0.10%) ⬆️
test-optimization-vitest-oldest 48.31% <ø> (+0.33%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@pr-commenter
Copy link
Copy Markdown

pr-commenter Bot commented May 20, 2026

Benchmarks

Benchmark execution time: 2026-05-20 10:48:01

Comparing candidate commit 5be3544 in PR branch szegedi/profiler-oom-test-headroom with baseline commit f8a6048 in branch master.

Found 0 performance improvements and 0 performance regressions! Performance is the same for 1499 metrics, 94 unstable metrics.

@szegedi szegedi marked this pull request as ready for review May 20, 2026 09:15
@szegedi szegedi requested a review from a team as a code owner May 20, 2026 09:15
@BridgeAR BridgeAR enabled auto-merge (squash) May 22, 2026 09:07
@BridgeAR BridgeAR merged commit ae4481f into master May 22, 2026
1033 of 1034 checks passed
@BridgeAR BridgeAR deleted the szegedi/profiler-oom-test-headroom branch May 22, 2026 09:17
This was referenced May 27, 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.

2 participants