Skip to content

perf(propagation): tighten tracestate, baggage, and tag inject paths#8234

Draft
BridgeAR wants to merge 2 commits intomasterfrom
BridgeAR/2026-05-01-pr8188-3-perf-propagation-dsm
Draft

perf(propagation): tighten tracestate, baggage, and tag inject paths#8234
BridgeAR wants to merge 2 commits intomasterfrom
BridgeAR/2026-05-01-pr8188-3-perf-propagation-dsm

Conversation

@BridgeAR
Copy link
Copy Markdown
Member

@BridgeAR BridgeAR commented May 1, 2026

W3C tracestate parse, baggage extract, and _dd.p.* tag inject all
run on every traced HTTP request. Several sub-allocations and one
quadratic parse loop are dropped.

tracestate.js#fromString walked value.matchAll(regex) and
inserted each match at the front of the result with Array#unshift,
which is O(n) per call. push plus a single reverse() gives the
same final order in O(n); the Map then iterates oldest-first so
toString's prepend builds the W3C-spec newest-first wire form.
forVendor reuses the state.toString() value computed one line
above instead of recomputing it.

text_map.js swaps three replaceAll(/[\xNN]/g, ...) regex
literals matching a single character for replaceAll('=', '~') /
replaceAll('~', '='), which skip the regex match path. The
m-flag on the extract regex was always dead (no anchors in the
pattern). _injectTraceparent walks trace.tags via
Object.keys(...) instead of banned for-in; the trace-tags
object's prototype chain isn't ours to trust, and for-in
enumerates inherited keys. _injectBaggageItems swaps
Object.entries for Object.keys + indexed read, dropping the
per-baggage-item [k, v] tuple. _extractBaggageItems caches the
baggageTagKeys Set on the propagator (rebuilt only when the
config array reference changes, e.g. remote-config rotation) and
gates decodeURIComponent behind value.includes('%') — a
microbenchmark pins the gated path at 13.4x faster than running
decodeURIComponent on plain ASCII baggage and only 2% slower than
the raw call on percent-encoded values.

BridgeAR added 2 commits May 1, 2026 22:23
W3C tracestate parse, baggage extract, and `_dd.p.*` tag inject all
run on every traced HTTP request. Several sub-allocations and one
quadratic parse loop are dropped.

`tracestate.js#fromString` walked `value.matchAll(regex)` and
inserted each match at the front of the result with `Array#unshift`,
which is `O(n)` per call. `push` plus a single `reverse()` gives the
same final order in `O(n)`; the `Map` then iterates oldest-first so
`toString`'s prepend builds the W3C-spec newest-first wire form.
`forVendor` reuses the `state.toString()` value computed one line
above instead of recomputing it.

`text_map.js` swaps three `replaceAll(/[\xNN]/g, ...)` regex
literals matching a single character for `replaceAll('=', '~')` /
`replaceAll('~', '=')`, which skip the regex match path. The
`m`-flag on the extract regex was always dead (no anchors in the
pattern). `_injectTraceparent` walks `trace.tags` via
`Object.keys(...)` instead of banned `for-in`; the trace-tags
object's prototype chain isn't ours to trust, and `for-in`
enumerates inherited keys. `_injectBaggageItems` swaps
`Object.entries` for `Object.keys` + indexed read, dropping the
per-baggage-item `[k, v]` tuple. `_extractBaggageItems` caches the
`baggageTagKeys` `Set` on the propagator (rebuilt only when the
config array reference changes, e.g. remote-config rotation) and
gates `decodeURIComponent` behind `value.includes('%')` — a
microbenchmark pins the gated path at 13.4x faster than running
`decodeURIComponent` on plain ASCII baggage and only 2% slower than
the raw call on percent-encoded values.
DSM observes every Kafka, SQS, SNS, Kinesis, Pub/Sub, and AMQP
message when enabled, so the per-checkpoint hot path compounds.
Several allocations are removed without changing the wire format:

1. `getSizeOrZero` stopped allocating a fresh Buffer copy of every
   string just to read its UTF-8 byte length. `Buffer.byteLength`
   returns the same value with no allocation. `getHeadersSize`'s
   `Object.entries(...).reduce(...)` becomes a `for (const key of
   Object.keys(headers))` loop, dropping the per-header `[k, v]`
   tuple and the reducer closure.
2. `pathway.js#shaHash` extracted the first 8 bytes of SHA-256 by
   round-tripping through a 64-char hex string + a 16-char slice +
   a hex-decoded Buffer. `digest().subarray(0, 8)` produces the same
   bytes directly. `computeHash` now also caches
   `hashableEdgeTags.join('')` and `propagationHashBigInt.toString(16)`
   once per call (each was computed twice), gates the
   `manual_checkpoint:true` filter on `includes(...)` so the common
   path skips the alloc, and reuses a module-scope 20-byte scratch
   buffer to assemble `encodePathwayContext` with a single
   `Buffer.from(subarray)` copy-out instead of seven nested allocs.
3. `setCheckpoint` precomputes `PATHWAY_HEADER_BYTES` from the static
   header overhead instead of allocating a temp object, encoding
   it, and JSON-stringifying just to read its length. It now reads
   the direction from `edgeTags[0]` directly: every in-tree caller
   places it there, the `DataStreamsCheckpointer` shape is updated
   to match, and the test fixture pinning that arg order is updated
   in the same commit.

Drive-by fix:

* `recordCheckpoint` reuses the `BigInt` already computed by the
  `StatsPoint` returned from `forCheckpoint(...)` instead of running
  `readBigUInt64LE` a second time. `setCheckpoint` returns
  `undefined` (rather than `null`) on the disabled fast path so
  the function shape matches the rest of the file.
* `processor.js` drops the `DsmPathwayCodec` import that the
  inlined byte-count made unreachable; `pathway.js` exports
  `CONTEXT_PROPAGATION_KEY_BASE64` so the constant calculation is
  anchored to the actual header key.
* `encoding.js` adds an `encodeVarintInto(target, offset, value)`
  helper so the pathway encoder can write directly into the scratch
  buffer instead of allocating a per-varint `Uint8Array` and
  copying.
@codecov
Copy link
Copy Markdown

codecov Bot commented May 1, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 89.63%. Comparing base (030413c) to head (00b73c3).
⚠️ Report is 3 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #8234   +/-   ##
=======================================
  Coverage   89.62%   89.63%           
=======================================
  Files         829      829           
  Lines       43358    43382   +24     
  Branches     7917     7918    +1     
=======================================
+ Hits        38860    38885   +25     
+ Misses       4498     4497    -1     
Flag Coverage Δ
aiguard-integration-active 41.30% <35.48%> (-0.02%) ⬇️
aiguard-integration-latest 41.25% <35.48%> (-0.02%) ⬇️
aiguard-integration-maintenance 41.30% <35.48%> (-0.02%) ⬇️
aiguard-macos 35.76% <7.69%> (-0.15%) ⬇️
aiguard-ubuntu 35.87% <7.69%> (-0.15%) ⬇️
aiguard-windows 35.67% <7.69%> (-0.15%) ⬇️
apm-capabilities-tracing-macos 48.25% <98.75%> (+0.04%) ⬆️
apm-capabilities-tracing-ubuntu-active 48.28% <98.75%> (+0.04%) ⬆️
apm-capabilities-tracing-ubuntu-latest 48.25% <98.75%> (+0.04%) ⬆️
apm-capabilities-tracing-ubuntu-maintenance 48.28% <98.75%> (+0.04%) ⬆️
apm-capabilities-tracing-ubuntu-oldest 48.27% <98.75%> (+0.04%) ⬆️
apm-capabilities-tracing-windows 48.07% <98.75%> (+0.04%) ⬆️
apm-integrations-aerospike-18-gte.5.2.0 34.91% <7.69%> (-0.15%) ⬇️
apm-integrations-aerospike-20-gte.5.5.0 34.93% <7.69%> (-0.15%) ⬇️
apm-integrations-aerospike-22-gte.5.12.1 34.93% <7.69%> (-0.15%) ⬇️
apm-integrations-aerospike-22-gte.6.0.0 34.93% <7.69%> (-0.15%) ⬇️
apm-integrations-aerospike-eol- 34.83% <7.69%> (-0.15%) ⬇️
apm-integrations-child-process 36.08% <7.69%> (-0.15%) ⬇️
apm-integrations-confluentinc-kafka-javascript-18 41.84% <74.35%> (-0.08%) ⬇️
apm-integrations-confluentinc-kafka-javascript-20 41.85% <74.35%> (-0.08%) ⬇️
apm-integrations-confluentinc-kafka-javascript-22 41.85% <74.35%> (-0.08%) ⬇️
apm-integrations-confluentinc-kafka-javascript-24 41.79% <74.35%> (-0.08%) ⬇️
apm-integrations-couchbase-18 35.11% <7.69%> (-0.15%) ⬇️
apm-integrations-couchbase-eol 35.16% <7.69%> (-0.17%) ⬇️
apm-integrations-dns 34.94% <7.69%> (-0.15%) ⬇️
apm-integrations-elasticsearch 35.51% <7.69%> (-0.14%) ⬇️
apm-integrations-http-latest 42.94% <25.64%> (-0.12%) ⬇️
apm-integrations-http-maintenance 43.00% <25.64%> (-0.12%) ⬇️
apm-integrations-http-oldest 43.01% <25.64%> (-0.12%) ⬇️
apm-integrations-http2 40.30% <25.64%> (-0.13%) ⬇️
apm-integrations-kafkajs-latest 41.72% <74.35%> (-0.09%) ⬇️
apm-integrations-kafkajs-oldest 41.77% <74.35%> (-0.09%) ⬇️
apm-integrations-net 35.60% <7.69%> (-0.15%) ⬇️
apm-integrations-next-11.1.4 29.41% <7.69%> (-0.12%) ⬇️
apm-integrations-next-13.2.0 31.25% <7.69%> (-0.13%) ⬇️
apm-integrations-next-gte.10.2.0.and.lt.11 23.33% <ø> (ø)
apm-integrations-next-gte.11.0.0.and.lt.13 31.26% <7.69%> (-0.13%) ⬇️
apm-integrations-next-gte.13.0.0.and.lt.14 31.51% <7.69%> (-0.13%) ⬇️
apm-integrations-next-gte.14.0.0.and.lte.14.2.6 31.35% <7.69%> (-0.11%) ⬇️
apm-integrations-next-gte.14.2.7.and.lt.15 31.33% <7.69%> (-0.13%) ⬇️
apm-integrations-next-gte.15.0.0 31.39% <7.69%> (-0.16%) ⬇️
apm-integrations-oracledb 35.18% <7.69%> (-0.14%) ⬇️
apm-integrations-prisma-18-gte.6.16.0.and.lt.7.0.0 35.48% <7.69%> (-0.14%) ⬇️
apm-integrations-prisma-latest-all 35.81% <7.69%> (-0.14%) ⬇️
apm-integrations-restify 37.04% <7.69%> (-0.15%) ⬇️
apm-integrations-sharedb 34.51% <7.69%> (-0.15%) ⬇️
apm-integrations-tedious 35.07% <7.69%> (-0.14%) ⬇️
appsec-express 52.74% <25.64%> (-0.12%) ⬇️
appsec-fastify 49.26% <25.64%> (-0.11%) ⬇️
appsec-graphql 49.43% <25.64%> (-0.22%) ⬇️
appsec-integration-active 37.59% <0.00%> (-0.02%) ⬇️
appsec-integration-latest 37.56% <0.00%> (-0.02%) ⬇️
appsec-integration-maintenance 37.58% <0.00%> (-0.02%) ⬇️
appsec-integration-oldest 37.58% <0.00%> (-0.02%) ⬇️
appsec-kafka 42.04% <25.64%> (-0.12%) ⬇️
appsec-ldapjs 41.24% <7.69%> (-0.14%) ⬇️
appsec-lodash 41.35% <7.69%> (-0.14%) ⬇️
appsec-macos 56.76% <25.64%> (-0.12%) ⬇️
appsec-mongodb-core 45.62% <25.64%> (-0.11%) ⬇️
appsec-mongoose 46.53% <25.64%> (-0.12%) ⬇️
appsec-mysql 48.69% <25.64%> (-0.12%) ⬇️
appsec-next-latest-11.1.4 29.58% <7.69%> (-0.12%) ⬇️
appsec-next-latest-13.2.0 31.46% <7.69%> (-0.14%) ⬇️
appsec-next-latest-gte.10.2.0.and.lt.11 28.55% <ø> (ø)
appsec-next-latest-gte.11.0.0.and.lt.13 31.44% <7.69%> (-0.14%) ⬇️
appsec-next-latest-gte.13.0.0.and.lt.14 31.64% <7.69%> (-0.13%) ⬇️
appsec-next-latest-gte.14.0.0.and.lte.14.2.6 31.48% <7.69%> (-0.14%) ⬇️
appsec-next-latest-gte.14.2.7.and.lt.15 31.48% <7.69%> (-0.14%) ⬇️
appsec-next-latest-gte.15.0.0 31.48% <7.69%> (-0.14%) ⬇️
appsec-next-oldest-11.1.4 29.60% <7.69%> (-0.12%) ⬇️
appsec-next-oldest-13.2.0 31.70% <7.69%> (-0.14%) ⬇️
appsec-next-oldest-gte.10.2.0.and.lt.11 28.68% <ø> (ø)
appsec-next-oldest-gte.11.0.0.and.lt.13 31.46% <7.69%> (-0.14%) ⬇️
appsec-next-oldest-gte.13.0.0.and.lt.14 31.89% <7.69%> (-0.13%) ⬇️
appsec-next-oldest-gte.14.0.0.and.lte.14.2.6 31.74% <7.69%> (-0.14%) ⬇️
appsec-next-oldest-gte.14.2.7.and.lt.15 31.74% <7.69%> (-0.14%) ⬇️
appsec-next-oldest-gte.15.0.0 31.74% <7.69%> (-0.14%) ⬇️
appsec-node-serialize 40.53% <7.69%> (-0.13%) ⬇️
appsec-passport 44.52% <25.64%> (-0.12%) ⬇️
appsec-postgres 48.30% <25.64%> (-0.09%) ⬇️
appsec-sourcing 40.04% <25.64%> (-0.11%) ⬇️
appsec-stripe 42.27% <7.69%> (-0.14%) ⬇️
appsec-template 40.70% <7.69%> (-0.13%) ⬇️
appsec-ubuntu 56.84% <25.64%> (-0.12%) ⬇️
appsec-windows 56.66% <25.64%> (-0.10%) ⬇️
debugger-ubuntu-active 44.37% <0.00%> (-0.10%) ⬇️
debugger-ubuntu-latest 44.32% <0.00%> (-0.48%) ⬇️
debugger-ubuntu-maintenance 44.39% <0.00%> (-0.46%) ⬇️
debugger-ubuntu-oldest 44.80% <0.00%> (-0.05%) ⬇️
instrumentations-instrumentation-bluebird 29.84% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-body-parser 37.67% <7.69%> (-0.15%) ⬇️
instrumentations-instrumentation-child_process 35.47% <7.69%> (-0.15%) ⬇️
instrumentations-instrumentation-cookie-parser 31.76% <7.69%> (-0.13%) ⬇️
instrumentations-instrumentation-express 31.98% <7.69%> (-0.13%) ⬇️
instrumentations-instrumentation-express-mongo-sanitize 31.88% <7.69%> (-0.13%) ⬇️
instrumentations-instrumentation-express-session 37.30% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-fs 29.52% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-generic-pool 30.59% <ø> (ø)
instrumentations-instrumentation-http 36.94% <21.79%> (-0.13%) ⬇️
instrumentations-instrumentation-knex 29.81% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-light-my-request 37.23% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-mongoose 30.89% <7.69%> (-0.13%) ⬇️
instrumentations-instrumentation-multer 37.44% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-mysql2 35.43% <7.69%> (-0.15%) ⬇️
instrumentations-instrumentation-passport 41.10% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-passport-http 40.88% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-passport-local 41.38% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-pg 34.97% <7.69%> (-0.15%) ⬇️
instrumentations-instrumentation-promise 29.77% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-promise-js 29.78% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-q 29.81% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-url 29.78% <7.69%> (-0.14%) ⬇️
instrumentations-instrumentation-when 29.79% <7.69%> (-0.14%) ⬇️
instrumentations-integration-esbuild-active 19.72% <0.00%> (-0.02%) ⬇️
instrumentations-integration-esbuild-latest 19.71% <0.00%> (-0.02%) ⬇️
instrumentations-integration-esbuild-maintenance 19.72% <0.00%> (-0.02%) ⬇️
instrumentations-integration-esbuild-oldest 19.71% <0.00%> (-0.02%) ⬇️
llmobs-ai 38.41% <7.69%> (-0.15%) ⬇️
llmobs-anthropic 37.91% <7.69%> (-0.14%) ⬇️
llmobs-bedrock 37.11% <7.69%> (-0.13%) ⬇️
llmobs-google-genai 37.54% <7.69%> (-0.14%) ⬇️
llmobs-langchain 37.08% <7.69%> (-0.12%) ⬇️
llmobs-openai 41.23% <7.69%> (-0.14%) ⬇️
llmobs-sdk-active 45.91% <25.64%> (-0.14%) ⬇️
llmobs-sdk-latest 45.84% <25.64%> (-0.14%) ⬇️
llmobs-sdk-maintenance 45.91% <25.64%> (-0.14%) ⬇️
llmobs-sdk-oldest 45.90% <25.64%> (-0.14%) ⬇️
llmobs-vertex-ai 37.72% <7.69%> (-0.14%) ⬇️
openfeature-macos 38.84% <0.00%> (-0.04%) ⬇️
openfeature-ubuntu 38.92% <0.00%> (-0.04%) ⬇️
openfeature-unit-active 50.43% <ø> (-0.52%) ⬇️
openfeature-unit-latest 50.28% <ø> (-0.52%) ⬇️
openfeature-unit-maintenance 50.43% <ø> (-0.52%) ⬇️
openfeature-unit-oldest 50.43% <ø> (-0.52%) ⬇️
openfeature-windows 38.65% <0.00%> (-0.09%) ⬇️
platform-core 36.53% <ø> (ø)
platform-esbuild 40.80% <ø> (ø)
platform-instrumentations-misc 31.32% <0.00%> (-0.04%) ⬇️
platform-integration-active 48.02% <45.16%> (-0.02%) ⬇️
platform-integration-latest 47.98% <45.16%> (-0.02%) ⬇️
platform-integration-maintenance 48.02% <45.16%> (-0.03%) ⬇️
platform-integration-oldest 48.21% <45.16%> (-0.02%) ⬇️
platform-shimmer 42.11% <ø> (ø)
platform-unit-guardrails 35.88% <ø> (ø)
platform-webpack 20.78% <0.00%> (-0.02%) ⬇️
plugins-azure-durable-functions 37.73% <35.48%> (-0.02%) ⬇️
plugins-azure-event-hubs 35.60% <35.48%> (-0.02%) ⬇️
plugins-azure-service-bus 36.03% <35.48%> (-0.02%) ⬇️
plugins-bullmq 40.65% <67.94%> (-0.12%) ⬇️
plugins-cassandra 35.20% <7.69%> (-0.14%) ⬇️
plugins-cookie 26.47% <ø> (ø)
plugins-cookie-parser 26.28% <ø> (ø)
plugins-crypto 27.32% <ø> (ø)
plugins-dd-trace-api 35.43% <7.69%> (-0.15%) ⬇️
plugins-express-mongo-sanitize 26.42% <ø> (ø)
plugins-express-session 26.24% <ø> (ø)
plugins-fastify 39.35% <7.69%> (-0.15%) ⬇️
plugins-fetch 35.83% <21.79%> (-0.13%) ⬇️
plugins-fs 35.70% <7.69%> (-0.15%) ⬇️
plugins-generic-pool 25.40% <ø> (ø)
plugins-google-cloud-pubsub 43.08% <74.35%> (-0.05%) ⬇️
plugins-grpc 38.08% <21.79%> (-0.13%) ⬇️
plugins-handlebars 26.46% <ø> (ø)
plugins-hapi 37.29% <7.69%> (-0.15%) ⬇️
plugins-hono 37.53% <7.69%> (-0.15%) ⬇️
plugins-ioredis 35.76% <7.69%> (-0.15%) ⬇️
plugins-knex 26.14% <ø> (ø)
plugins-langgraph 35.08% <7.69%> (-0.15%) ⬇️
plugins-ldapjs 24.02% <ø> (ø)
plugins-light-my-request 25.88% <ø> (ø)
plugins-limitd-client 30.09% <7.69%> (+0.01%) ⬆️
plugins-lodash 25.47% <ø> (ø)
plugins-mariadb 36.62% <7.69%> (-0.20%) ⬇️
plugins-memcached 35.41% <7.69%> (-0.15%) ⬇️
plugins-microgateway-core 36.38% <7.69%> (-0.15%) ⬇️
plugins-modelcontextprotocol-sdk 34.33% <7.69%> (-0.15%) ⬇️
plugins-moleculer 38.11% <25.64%> (-0.12%) ⬇️
plugins-mongodb 36.59% <7.69%> (-0.14%) ⬇️
plugins-mongodb-core 36.22% <7.69%> (-0.15%) ⬇️
plugins-mongoose 36.08% <7.69%> (-0.23%) ⬇️
plugins-multer 26.24% <ø> (ø)
plugins-mysql 36.48% <7.69%> (-0.15%) ⬇️
plugins-mysql2 36.46% <7.69%> (-0.15%) ⬇️
plugins-node-serialize 26.51% <ø> (ø)
plugins-opensearch 35.05% <7.69%> (-0.14%) ⬇️
plugins-passport-http 26.30% <ø> (ø)
plugins-pino 31.80% <7.69%> (-0.14%) ⬇️
plugins-postgres 34.55% <7.69%> (-0.03%) ⬇️
plugins-process 27.32% <ø> (ø)
plugins-pug 26.47% <ø> (ø)
plugins-redis 35.96% <7.69%> (-0.15%) ⬇️
plugins-router 39.86% <25.64%> (-0.13%) ⬇️
plugins-sequelize 25.18% <ø> (ø)
plugins-test-and-upstream-amqp10 35.72% <7.69%> (-0.15%) ⬇️
plugins-test-and-upstream-amqplib 40.93% <74.35%> (-0.08%) ⬇️
plugins-test-and-upstream-apollo 36.55% <7.69%> (-0.13%) ⬇️
plugins-test-and-upstream-avsc 35.04% <7.69%> (-0.15%) ⬇️
plugins-test-and-upstream-bunyan 31.21% <7.69%> (-0.14%) ⬇️
plugins-test-and-upstream-connect 37.89% <7.69%> (-0.15%) ⬇️
plugins-test-and-upstream-graphql 37.24% <7.69%> (-0.15%) ⬇️
plugins-test-and-upstream-koa 37.48% <7.69%> (-0.15%) ⬇️
plugins-test-and-upstream-protobufjs 35.25% <7.69%> (-0.15%) ⬇️
plugins-test-and-upstream-rhea 41.00% <74.35%> (-0.08%) ⬇️
plugins-undici 36.59% <21.79%> (+0.01%) ⬆️
plugins-url 27.32% <ø> (ø)
plugins-valkey 35.42% <7.69%> (-0.15%) ⬇️
plugins-vm 27.32% <ø> (ø)
plugins-winston 31.68% <7.69%> (-0.28%) ⬇️
plugins-ws 39.02% <25.64%> (-0.13%) ⬇️
profiling-macos 43.87% <0.00%> (-0.10%) ⬇️
profiling-ubuntu 44.38% <0.00%> (-0.10%) ⬇️
profiling-windows 41.08% <0.00%> (-0.10%) ⬇️
serverless-aws-sdk-latest-aws-sdk 35.36% <21.79%> (-0.11%) ⬇️
serverless-aws-sdk-latest-bedrockruntime 33.81% <7.69%> (-0.13%) ⬇️
serverless-aws-sdk-latest-client 22.12% <ø> (ø)
serverless-aws-sdk-latest-dynamodb 36.23% <7.69%> (-0.13%) ⬇️
serverless-aws-sdk-latest-eventbridge 29.31% <6.45%> (-0.22%) ⬇️
serverless-aws-sdk-latest-kinesis 39.20% <73.07%> (-0.08%) ⬇️
serverless-aws-sdk-latest-lambda 36.48% <25.64%> (-0.11%) ⬇️
serverless-aws-sdk-latest-s3 34.41% <7.69%> (-0.13%) ⬇️
serverless-aws-sdk-latest-serverless-peer-service 40.82% <70.51%> (-0.09%) ⬇️
serverless-aws-sdk-latest-sns 40.38% <74.35%> (-0.07%) ⬇️
serverless-aws-sdk-latest-sqs 39.49% <74.35%> (-0.07%) ⬇️
serverless-aws-sdk-latest-stepfunctions 35.07% <21.79%> (-0.12%) ⬇️
serverless-aws-sdk-latest-util 47.80% <ø> (ø)
serverless-aws-sdk-oldest-aws-sdk 35.42% <21.79%> (-0.12%) ⬇️
serverless-aws-sdk-oldest-bedrockruntime 33.86% <7.69%> (-0.13%) ⬇️
serverless-aws-sdk-oldest-client 22.50% <ø> (ø)
serverless-aws-sdk-oldest-dynamodb 36.28% <7.69%> (-0.13%) ⬇️
serverless-aws-sdk-oldest-eventbridge 29.36% <6.45%> (-0.22%) ⬇️
serverless-aws-sdk-oldest-kinesis 39.28% <73.07%> (-0.08%) ⬇️
serverless-aws-sdk-oldest-lambda 36.52% <25.64%> (-0.11%) ⬇️
serverless-aws-sdk-oldest-s3 34.47% <7.69%> (-0.13%) ⬇️
serverless-aws-sdk-oldest-serverless-peer-service 40.89% <70.51%> (-0.09%) ⬇️
serverless-aws-sdk-oldest-sns 40.57% <74.35%> (-0.07%) ⬇️
serverless-aws-sdk-oldest-sqs 39.55% <74.35%> (-0.07%) ⬇️
serverless-aws-sdk-oldest-stepfunctions 35.12% <21.79%> (-0.12%) ⬇️
serverless-aws-sdk-oldest-util 48.12% <ø> (ø)
serverless-azure-functions-client 39.27% <45.16%> (-0.02%) ⬇️
serverless-azure-functions-eventhubs 38.92% <45.16%> (-0.02%) ⬇️
serverless-azure-functions-servicebus 38.98% <45.16%> (-0.02%) ⬇️
serverless-lambda 33.52% <7.69%> (-0.14%) ⬇️
test-optimization-cucumber-latest-7.0.0 50.18% <35.48%> (-0.02%) ⬇️
test-optimization-cucumber-latest-latest 52.70% <35.48%> (+0.10%) ⬆️
test-optimization-cucumber-oldest-7.0.0 50.20% <35.48%> (+0.10%) ⬆️
test-optimization-cypress-latest-10.2.0-commonJS 47.42% <0.00%> (+0.09%) ⬆️
test-optimization-cypress-latest-10.2.0-esm 47.43% <0.00%> (+0.04%) ⬆️
test-optimization-cypress-latest-14.5.4-commonJS 48.00% <0.00%> (+0.04%) ⬆️
test-optimization-cypress-latest-14.5.4-esm 48.03% <0.00%> (+0.04%) ⬆️
test-optimization-cypress-latest-latest-commonJS 48.49% <0.00%> (+0.04%) ⬆️
test-optimization-cypress-latest-latest-esm 48.57% <0.00%> (+0.09%) ⬆️
test-optimization-cypress-oldest-10.2.0-commonJS 47.41% <0.00%> (+0.04%) ⬆️
test-optimization-cypress-oldest-10.2.0-esm 47.44% <0.00%> (+0.04%) ⬆️
test-optimization-cypress-oldest-14.5.4-commonJS 48.03% <0.00%> (+0.04%) ⬆️
test-optimization-cypress-oldest-14.5.4-esm 48.07% <0.00%> (+0.04%) ⬆️
test-optimization-jest-latest-24.8.0 53.53% <35.48%> (+0.04%) ⬆️
test-optimization-jest-latest-latest 54.39% <35.48%> (+0.06%) ⬆️
test-optimization-jest-oldest-24.8.0 53.56% <35.48%> (+0.04%) ⬆️
test-optimization-jest-oldest-latest 54.40% <35.48%> (+0.06%) ⬆️
test-optimization-mocha-latest-5.2.0 48.62% <0.00%> (+0.08%) ⬆️
test-optimization-mocha-latest-latest 52.94% <35.48%> (+0.06%) ⬆️
test-optimization-mocha-oldest-5.2.0 48.62% <0.00%> (+0.05%) ⬆️
test-optimization-mocha-oldest-latest 53.06% <35.48%> (+0.06%) ⬆️
test-optimization-playwright-latest-latest-playwright-active-test-span 44.27% <0.00%> (+0.26%) ⬆️
test-optimization-playwright-latest-latest-playwright-atr 42.98% <0.00%> (+0.11%) ⬆️
test-optimization-playwright-latest-latest-playwright-efd 43.25% <0.00%> (+0.06%) ⬆️
test-optimization-playwright-latest-latest-playwright-impacted-tests 42.91% <0.00%> (-0.04%) ⬇️
test-optimization-playwright-latest-latest-playwright-reporting 43.05% <0.00%> (+0.06%) ⬆️
test-optimization-playwright-latest-latest-playwright-test-management 44.69% <0.00%> (+0.07%) ⬆️
test-optimization-playwright-latest-oldest-playwright-active-test-span 44.32% <0.00%> (+0.26%) ⬆️
test-optimization-playwright-latest-oldest-playwright-atr 43.14% <0.00%> (+0.08%) ⬆️
test-optimization-playwright-latest-oldest-playwright-efd 43.28% <0.00%> (+0.06%) ⬆️
test-optimization-playwright-latest-oldest-playwright-impacted-tests 42.95% <0.00%> (-0.04%) ⬇️
test-optimization-playwright-latest-oldest-playwright-reporting 43.11% <0.00%> (+0.06%) ⬆️
test-optimization-playwright-latest-oldest-playwright-test-management 44.74% <0.00%> (+0.07%) ⬆️
test-optimization-playwright-oldest-latest-playwright-active-test-span 44.29% <0.00%> (+0.26%) ⬆️
test-optimization-playwright-oldest-latest-playwright-atr 42.99% <0.00%> (+0.08%) ⬆️
test-optimization-playwright-oldest-latest-playwright-efd 43.27% <0.00%> (+0.06%) ⬆️
test-optimization-playwright-oldest-latest-playwright-impacted-tests 42.96% <0.00%> (-0.04%) ⬇️
test-optimization-playwright-oldest-latest-playwright-reporting 43.07% <0.00%> (+0.06%) ⬆️
test-optimization-playwright-oldest-latest-playwright-test-management 44.70% <0.00%> (+0.07%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-active-test-span 44.36% <0.00%> (+0.26%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-atr 43.18% <0.00%> (+0.08%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-efd 43.30% <0.00%> (+0.06%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-impacted-tests 42.99% <0.00%> (-0.04%) ⬇️
test-optimization-playwright-oldest-oldest-playwright-reporting 43.12% <0.00%> (+0.06%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-test-management 44.76% <0.00%> (+0.07%) ⬆️
test-optimization-selenium-latest 46.09% <35.48%> (+0.05%) ⬆️
test-optimization-selenium-oldest 45.55% <35.48%> (+0.06%) ⬆️
test-optimization-testopt-active 47.37% <35.48%> (+0.12%) ⬆️
test-optimization-testopt-latest 47.33% <35.48%> (+0.12%) ⬆️
test-optimization-testopt-maintenance 47.37% <35.48%> (+0.12%) ⬆️
test-optimization-testopt-oldest 48.14% <35.48%> (+0.13%) ⬆️
test-optimization-vitest-latest 51.05% <35.48%> (+0.08%) ⬆️
test-optimization-vitest-oldest 48.07% <35.48%> (+0.32%) ⬆️

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.

@datadog-prod-us1-4
Copy link
Copy Markdown

datadog-prod-us1-4 Bot commented May 1, 2026

Tests

Fix all issues with BitsAI or with Cursor

⚠️ Warnings

🧪 4 Tests failed

Plugin kafkajs with kafkajs >=1.4 (1.4.0) data stream monitoring backlogs "before each" hook for "Should add backlog on producer response" from backlogs   View in Datadog   (Fix with Cursor)
This server does not host this topic-partition

KafkaJSProtocolError: This server does not host this topic-partition
    at createErrorFromCode (versions/kafkajs@1.4.0/node_modules/kafkajs/src/protocol/error.js:472:10)
    at Object.parse (versions/kafkajs@1.4.0/node_modules/kafkajs/src/protocol/requests/metadata/v0/response.js:56:11)
    at Connection.send (versions/kafkajs@1.4.0/node_modules/kafkajs/src/network/connection.js:250:35)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Broker.metadata (versions/kafkajs@1.4.0/node_modules/kafkajs/src/broker/index.js:144:12)
    at async /home/runner/work/dd-trace-js/dd-trace-js/versions/kafkajs@1.4.0/node_modules/kafkajs/src/cluster/brokerPool.js:117:25
    at async Cluster.refreshMetadata (versions/kafkajs@1.4.0/node_modules/kafkajs/src/cluster/index.js:97:5)
...
Plugin kafkajs with kafkajs >=1.4 (2.2.4) data stream monitoring backlogs "before each" hook for "Should add backlog on consumer explicit commit" from backlogs   View in Datadog   (Fix with Cursor)
This server does not host this topic-partition

KafkaJSProtocolError: This server does not host this topic-partition
    at createErrorFromCode (versions/kafkajs@>=1.4/node_modules/kafkajs/src/protocol/error.js:581:10)
    at Object.parse (versions/kafkajs@>=1.4/node_modules/kafkajs/src/protocol/requests/metadata/v0/response.js:55:11)
    at Connection.send (versions/kafkajs@>=1.4/node_modules/kafkajs/src/network/connection.js:433:35)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async [private:Broker:sendRequest] (versions/kafkajs@>=1.4/node_modules/kafkajs/src/broker/index.js:904:14)
    at async Broker.metadata (versions/kafkajs@>=1.4/node_modules/kafkajs/src/broker/index.js:177:12)
    at async /home/runner/work/dd-trace-js/dd-trace-js/versions/kafkajs@>=1.4/node_modules/kafkajs/src/cluster/brokerPool.js:158:25
...
Plugin kafkajs with kafkajs >=1.4 (1.4.0) data stream monitoring checkpoints "before each" hook for "Should set a message payload size when consuming a message" from checkpoints   View in Datadog   (Fix with Cursor)
This server does not host this topic-partition

KafkaJSProtocolError: This server does not host this topic-partition
    at createErrorFromCode (versions/kafkajs@1.4.0/node_modules/kafkajs/src/protocol/error.js:472:10)
    at Object.parse (versions/kafkajs@1.4.0/node_modules/kafkajs/src/protocol/requests/metadata/v0/response.js:56:11)
    at Connection.send (versions/kafkajs@1.4.0/node_modules/kafkajs/src/network/connection.js:250:35)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Broker.metadata (versions/kafkajs@1.4.0/node_modules/kafkajs/src/broker/index.js:144:12)
    at async /home/runner/work/dd-trace-js/dd-trace-js/versions/kafkajs@1.4.0/node_modules/kafkajs/src/cluster/brokerPool.js:117:25
    at async Cluster.refreshMetadata (versions/kafkajs@1.4.0/node_modules/kafkajs/src/cluster/index.js:97:5)
...
Plugin kafkajs with kafkajs >=1.4 (2.2.4) data stream monitoring checkpoints "before each" hook for "Should set a checkpoint on produce" from checkpoints   View in Datadog   (Fix with Cursor)
This server does not host this topic-partition

KafkaJSProtocolError: This server does not host this topic-partition
    at createErrorFromCode (versions/kafkajs@>=1.4/node_modules/kafkajs/src/protocol/error.js:581:10)
    at Object.parse (versions/kafkajs@>=1.4/node_modules/kafkajs/src/protocol/requests/metadata/v0/response.js:55:11)
    at Connection.send (versions/kafkajs@>=1.4/node_modules/kafkajs/src/network/connection.js:433:35)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async [private:Broker:sendRequest] (versions/kafkajs@>=1.4/node_modules/kafkajs/src/broker/index.js:904:14)
    at async Broker.metadata (versions/kafkajs@>=1.4/node_modules/kafkajs/src/broker/index.js:177:12)
    at async /home/runner/work/dd-trace-js/dd-trace-js/versions/kafkajs@>=1.4/node_modules/kafkajs/src/cluster/brokerPool.js:158:25
...
View all

ℹ️ Info

No other issues found (see more)

❄️ No new flaky tests detected

🎯 Code Coverage (details)
Patch Coverage: 60.76%
Overall Coverage: 45.47% (-41.01%)

Useful? React with 👍 / 👎

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

@pr-commenter
Copy link
Copy Markdown

pr-commenter Bot commented May 1, 2026

Benchmarks

Benchmark execution time: 2026-05-01 23:11:27

Comparing candidate commit 00b73c3 in PR branch BridgeAR/2026-05-01-pr8188-3-perf-propagation-dsm with baseline commit 030413c in branch master.

Found 109 performance improvements and 0 performance regressions! Performance is the same for 1638 metrics, 97 unstable metrics.

scenario:datastreams-consume-18

  • 🟩 cpu_user_time [-482.301ms; -438.614ms] or [-13.447%; -12.229%]
  • 🟩 execution_time [-497.809ms; -454.395ms] or [-13.623%; -12.435%]
  • 🟩 instructions [-3.1G instructions; -2.9G instructions] or [-11.093%; -10.554%]

scenario:datastreams-consume-20

  • 🟩 cpu_user_time [-352.913ms; -314.923ms] or [-11.557%; -10.313%]
  • 🟩 execution_time [-368.092ms; -330.403ms] or [-11.830%; -10.619%]
  • 🟩 instructions [-2.3G instructions; -2.2G instructions] or [-10.141%; -9.558%]

scenario:datastreams-consume-22

  • 🟩 cpu_user_time [-306.348ms; -278.588ms] or [-10.955%; -9.962%]
  • 🟩 execution_time [-318.847ms; -290.879ms] or [-11.169%; -10.190%]
  • 🟩 instructions [-1.6G instructions; -1.6G instructions] or [-7.877%; -7.698%]

scenario:datastreams-consume-24

  • 🟩 cpu_user_time [-307.234ms; -286.085ms] or [-11.261%; -10.486%]
  • 🟩 execution_time [-322.275ms; -297.367ms] or [-11.560%; -10.667%]
  • 🟩 instructions [-1.8G instructions; -1.8G instructions] or [-8.900%; -8.780%]

scenario:datastreams-produce-18

  • 🟩 cpu_user_time [-3.818s; -3.788s] or [-58.314%; -57.856%]
  • 🟩 execution_time [-3.871s; -3.836s] or [-58.237%; -57.717%]
  • 🟩 instructions [-30.6G instructions; -30.4G instructions] or [-59.648%; -59.437%]

scenario:datastreams-produce-20

  • 🟩 cpu_user_time [-2.803s; -2.735s] or [-55.025%; -53.689%]
  • 🟩 execution_time [-2.842s; -2.772s] or [-54.947%; -53.593%]
  • 🟩 instructions [-21.2G instructions; -20.9G instructions] or [-55.414%; -54.478%]

scenario:datastreams-produce-22

  • 🟩 cpu_user_time [-2.066s; -2.032s] or [-48.247%; -47.473%]
  • 🟩 execution_time [-2.103s; -2.069s] or [-48.228%; -47.449%]
  • 🟩 instructions [-15.9G instructions; -15.8G instructions] or [-49.014%; -48.652%]

scenario:datastreams-produce-24

  • 🟩 cpu_user_time [-2.416s; -2.281s] or [-53.208%; -50.225%]
  • 🟩 execution_time [-2.451s; -2.317s] or [-53.045%; -50.142%]
  • 🟩 instructions [-16.5G instructions; -16.5G instructions] or [-50.275%; -50.198%]

scenario:datastreams-produce-high-cardinality-18

  • 🟩 cpu_user_time [-3.867s; -3.803s] or [-56.263%; -55.344%]
  • 🟩 execution_time [-3.886s; -3.821s] or [-55.918%; -54.976%]
  • 🟩 instructions [-30.3G instructions; -30.2G instructions] or [-58.354%; -58.056%]

scenario:datastreams-produce-high-cardinality-20

  • 🟩 cpu_user_time [-2.810s; -2.724s] or [-52.288%; -50.682%]
  • 🟩 execution_time [-2.825s; -2.735s] or [-51.902%; -50.253%]
  • 🟩 instructions [-21.0G instructions; -20.6G instructions] or [-53.906%; -52.817%]

scenario:datastreams-produce-high-cardinality-22

  • 🟩 cpu_user_time [-2.107s; -2.049s] or [-46.137%; -44.858%]
  • 🟩 execution_time [-2.120s; -2.058s] or [-45.714%; -44.379%]
  • 🟩 instructions [-15.7G instructions; -15.6G instructions] or [-47.698%; -47.228%]

scenario:datastreams-produce-high-cardinality-24

  • 🟩 cpu_user_time [-2.428s; -2.286s] or [-51.008%; -48.032%]
  • 🟩 execution_time [-2.451s; -2.306s] or [-50.623%; -47.636%]
  • 🟩 instructions [-16.1G instructions; -16.1G instructions] or [-48.423%; -48.347%]
  • 🟩 max_rss_usage [-29.649MB; -17.541MB] or [-22.669%; -13.412%]

scenario:datastreams-produce-manual-checkpoint-18

  • 🟩 cpu_user_time [-3.819s; -3.778s] or [-57.344%; -56.734%]
  • 🟩 execution_time [-3.859s; -3.815s] or [-57.115%; -56.460%]
  • 🟩 instructions [-30.0G instructions; -30.0G instructions] or [-58.292%; -58.102%]

scenario:datastreams-produce-manual-checkpoint-20

  • 🟩 cpu_user_time [-2.770s; -2.697s] or [-54.030%; -52.610%]
  • 🟩 execution_time [-2.800s; -2.726s] or [-53.817%; -52.396%]
  • 🟩 instructions [-21.2G instructions; -20.8G instructions] or [-54.475%; -53.517%]

scenario:datastreams-produce-manual-checkpoint-22

  • 🟩 cpu_user_time [-1.999s; -1.968s] or [-46.594%; -45.872%]
  • 🟩 execution_time [-2.026s; -1.994s] or [-46.375%; -45.639%]
  • 🟩 instructions [-15.6G instructions; -15.5G instructions] or [-47.655%; -47.278%]

scenario:datastreams-produce-manual-checkpoint-24

  • 🟩 cpu_user_time [-2.296s; -2.178s] or [-51.099%; -48.464%]
  • 🟩 execution_time [-2.326s; -2.207s] or [-50.848%; -48.242%]
  • 🟩 instructions [-16.1G instructions; -16.1G instructions] or [-48.700%; -48.625%]

scenario:datastreams-produce-with-message-size-18

  • 🟩 cpu_user_time [-6.725s; -6.672s] or [-66.407%; -65.888%]
  • 🟩 execution_time [-6.790s; -6.731s] or [-66.309%; -65.731%]
  • 🟩 instructions [-53.6G instructions; -53.4G instructions] or [-66.730%; -66.576%]

scenario:datastreams-produce-with-message-size-20

  • 🟩 cpu_user_time [-4.642s; -4.573s] or [-63.104%; -62.160%]
  • 🟩 execution_time [-4.687s; -4.613s] or [-63.004%; -62.009%]
  • 🟩 instructions [-35.5G instructions; -35.1G instructions] or [-63.069%; -62.406%]

scenario:datastreams-produce-with-message-size-22

  • 🟩 cpu_user_time [-3.095s; -3.058s] or [-53.405%; -52.768%]
  • 🟩 execution_time [-3.138s; -3.098s] or [-53.362%; -52.688%]
  • 🟩 instructions [-24.0G instructions; -23.9G instructions] or [-53.486%; -53.267%]

scenario:datastreams-produce-with-message-size-24

  • 🟩 cpu_user_time [-3.873s; -3.696s] or [-59.312%; -56.609%]
  • 🟩 execution_time [-3.924s; -3.748s] or [-59.243%; -56.594%]
  • 🟩 instructions [-26.2G instructions; -26.2G instructions] or [-54.936%; -54.880%]

scenario:propagation-extract-18

  • 🟩 cpu_user_time [-296.840ms; -273.732ms] or [-8.274%; -7.630%]
  • 🟩 execution_time [-296.140ms; -272.947ms] or [-8.142%; -7.504%]
  • 🟩 instructions [-2.2G instructions; -2.1G instructions] or [-9.007%; -8.789%]

scenario:propagation-extract-20

  • 🟩 cpu_user_time [-339.746ms; -314.323ms] or [-9.862%; -9.124%]
  • 🟩 execution_time [-340.526ms; -315.091ms] or [-9.745%; -9.017%]
  • 🟩 instructions [-2.3G instructions; -2.2G instructions] or [-9.932%; -9.693%]

scenario:propagation-extract-22

  • 🟩 cpu_user_time [-362.210ms; -314.770ms] or [-10.324%; -8.972%]
  • 🟩 execution_time [-363.469ms; -316.753ms] or [-10.212%; -8.900%]
  • 🟩 instructions [-2.3G instructions; -2.3G instructions] or [-9.961%; -9.791%]

scenario:propagation-extract-24

  • 🟩 cpu_user_time [-290.582ms; -263.259ms] or [-7.746%; -7.018%]
  • 🟩 execution_time [-293.190ms; -266.984ms] or [-7.605%; -6.925%]
  • 🟩 instructions [-2.0G instructions; -2.0G instructions] or [-8.092%; -7.915%]

scenario:propagation-extract-baggage-ascii-18

  • 🟩 cpu_user_time [-290.002ms; -267.766ms] or [-8.046%; -7.429%]
  • 🟩 execution_time [-289.781ms; -267.198ms] or [-7.926%; -7.309%]
  • 🟩 instructions [-2.2G instructions; -2.1G instructions] or [-9.044%; -8.775%]

scenario:propagation-extract-baggage-ascii-20

  • 🟩 cpu_user_time [-341.920ms; -314.430ms] or [-9.893%; -9.098%]
  • 🟩 execution_time [-340.854ms; -314.469ms] or [-9.722%; -8.969%]
  • 🟩 instructions [-2.3G instructions; -2.2G instructions] or [-9.900%; -9.692%]

scenario:propagation-extract-baggage-ascii-22

  • 🟩 cpu_user_time [-351.196ms; -301.413ms] or [-10.028%; -8.607%]
  • 🟩 execution_time [-350.432ms; -301.300ms] or [-9.861%; -8.479%]
  • 🟩 instructions [-2.3G instructions; -2.3G instructions] or [-9.925%; -9.722%]

scenario:propagation-extract-baggage-ascii-24

  • 🟩 cpu_user_time [-290.768ms; -266.215ms] or [-7.751%; -7.097%]
  • 🟩 execution_time [-289.718ms; -267.001ms] or [-7.518%; -6.929%]
  • 🟩 instructions [-2.1G instructions; -2.0G instructions] or [-8.212%; -8.028%]

scenario:propagation-extract-inject-18

  • 🟩 cpu_user_time [-548.281ms; -499.755ms] or [-8.270%; -7.538%]
  • 🟩 execution_time [-550.141ms; -501.725ms] or [-8.217%; -7.494%]
  • 🟩 instructions [-3.8G instructions; -3.7G instructions] or [-8.775%; -8.612%]

scenario:propagation-extract-inject-20

  • 🟩 cpu_user_time [-598.446ms; -560.856ms] or [-9.481%; -8.885%]
  • 🟩 execution_time [-601.523ms; -563.844ms] or [-9.435%; -8.844%]
  • 🟩 instructions [-3.7G instructions; -3.6G instructions] or [-8.906%; -8.721%]

scenario:propagation-extract-inject-22

  • 🟩 cpu_user_time [-556.141ms; -487.566ms] or [-8.856%; -7.764%]
  • 🟩 execution_time [-554.813ms; -487.265ms] or [-8.748%; -7.683%]
  • 🟩 instructions [-3.7G instructions; -3.6G instructions] or [-8.925%; -8.802%]

scenario:propagation-extract-inject-24

  • 🟩 cpu_user_time [-609.626ms; -545.054ms] or [-9.397%; -8.402%]
  • 🟩 execution_time [-608.333ms; -545.530ms] or [-9.219%; -8.267%]
  • 🟩 instructions [-3.3G instructions; -3.3G instructions] or [-7.757%; -7.632%]

scenario:propagation-inject-18

  • 🟩 cpu_user_time [-236.144ms; -221.182ms] or [-9.190%; -8.608%]
  • 🟩 execution_time [-237.602ms; -222.829ms] or [-9.114%; -8.547%]
  • 🟩 instructions [-1.7G instructions; -1.6G instructions] or [-9.775%; -9.659%]

scenario:propagation-inject-20

  • 🟩 cpu_user_time [-189.072ms; -174.097ms] or [-7.752%; -7.138%]
  • 🟩 execution_time [-187.943ms; -174.071ms] or [-7.635%; -7.072%]
  • 🟩 instructions [-1.5G instructions; -1.4G instructions] or [-9.091%; -8.851%]

scenario:propagation-inject-22

  • 🟩 cpu_user_time [-181.672ms; -170.033ms] or [-7.536%; -7.053%]
  • 🟩 execution_time [-183.215ms; -172.570ms] or [-7.519%; -7.082%]
  • 🟩 instructions [-1.5G instructions; -1.5G instructions] or [-9.144%; -9.048%]

scenario:propagation-inject-24

  • 🟩 cpu_user_time [-195.657ms; -185.065ms] or [-8.032%; -7.597%]
  • 🟩 execution_time [-196.360ms; -185.702ms] or [-7.968%; -7.536%]
  • 🟩 instructions [-1.3G instructions; -1.2G instructions] or [-8.015%; -7.933%]

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 2, 2026

Overall package size

Self size: 5.68 MB
Deduped: 6.53 MB
No deduping: 6.53 MB

Dependency sizes | name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 3.0.1 | 82.56 kB | 817.39 kB | | dc-polyfill | 0.1.10 | 26.73 kB | 26.73 kB |

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

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.

1 participant