Skip to content

fix(profiling): resolve web tags for descendants cached before promotion - #9805

Draft
szegedi wants to merge 1 commit into
masterfrom
szegedi/web-tags-cache-stale-miss
Draft

fix(profiling): resolve web tags for descendants cached before promotion#9805
szegedi wants to merge 1 commit into
masterfrom
szegedi/web-tags-cache-stale-miss

Conversation

@szegedi

@szegedi szegedi commented Aug 13, 2026

Copy link
Copy Markdown
Contributor

What does this PR do?

Makes the shared web-tags cache correct an empty answer once an ancestor becomes a web-server span, and has both consumers pick that up for state they already built.

Motivation

Follow-up to the review of #9210 (discussion).

getCachedWebTags caches "no web-server ancestor" permanently, but plugins set span.type after creating the span — TracingPlugin.startSpan activates it before addRequestTags runs — so a child created in that window walks past an ancestor that is about to become a web-server span and caches a miss for a chain that is about to have one. The ancestor's promotion can't find those descendants, because the walk only goes upwards. The result is a request whose downstream spans permanently lose their endpoint: no datadog.trace_endpoint in the OTEP-4947 record, and no trace endpoint label on wall-profiler samples.

Verified before fixing, with the real cache:

A: child resolves to parent bag at first lookup? true      <- parent already span.type=web
A: child sees the route later?                   /x        <- fine, same live bag
B: child first lookup ->        undefined                  <- parent not yet span.type=web
B: parent promoted ->           /y
B: child after promotion ->     undefined                  <- the bug

Additional Notes

Every promotion bumps a generation counter; an empty answer older than it is walked again on the next lookup. Resolved answers are never revisited (the cached bag is the ancestor's live object, so later tag changes land in it anyway), and a span with no parent is stamped permanently empty since only its own promotion could change it — onTagsUpdate already covers that. A re-walk that resolves publishes resolvedCh for that span, the same announcement a promoted span gets, so consumers don't care how the ancestry appeared.

That alone fixes nothing, which is worth being explicit about: both consumers only ask the cache while building their per-span state, and the affected spans already have theirs. So each re-checks state built from an empty answer — the writer on re-entry, the wall profiler in #getProfilingContext. The writer's re-check is guarded so the announcement published from inside the lookup can't append the endpoint twice.

Cost on the hot path: for a resolved span, unchanged. For a span with no web ancestry, two property reads per activation plus the cache's generation compare; an actual re-walk only happens when a promotion has invalidated something.

Jira: PROF-15353

@szegedi
szegedi requested a review from a team as a code owner August 13, 2026 10:33
@dd-octo-sts

dd-octo-sts Bot commented Aug 13, 2026

Copy link
Copy Markdown
Contributor

Overall package size

Self size: 8.13 MB
Deduped: 8.79 MB
No deduping: 8.79 MB

Dependency sizes | name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 3.3.3 | 125.43 kB | 441.68 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

@szegedi
szegedi marked this pull request as draft August 13, 2026 10:35

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: c2b9093ea2

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread packages/dd-trace/src/web-tags-cache.js Outdated
cached.webTags = tags
// This span may be the ancestor a descendant walked past before it counted as
// a web-server span, so every empty answer computed until now is suspect.
generation++

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Scope miss invalidation to the current trace

With endpoint collection or the OTEP thread-context writer enabled, every HTTP request span is first cached as a miss and then promoted, so this process-global generation++ makes misses in unrelated traces stale. A long-lived non-web child span that is activated after each web request will repeatedly re-walk its parent chain even though only another trace changed, and the new wall/OTEP recheck calls this from storage-enter hot paths; please keep the generation per trace or otherwise invalidate only the affected ancestry.

AGENTS.md reference: AGENTS.md:L194-L199

Useful? React with 👍 / 👎.

@szegedi szegedi Aug 13, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Fair, I changed it now so that the counter now lives on the trace (a Symbol on _trace) rather than in the module.

Per-trace isn't just cheaper, it's the correct scope. Cost is now bounded by promotions in the span's own trace. This is normally one, (the request span itself) instead of one per request process-wide.

I didn't go as far as invalidating only the affected ancestry, which would need a reverse parent-to-descendants index the cache doesn't have and would have to maintain on the hot path. Per-trace gets essentially all of the benefit for one property read.

The change also surfaced a harness bug: npm run test:profiler went red on the new wall-profiler test, and the cause was actually the test harness. makeChildSpan in wall.spec.js built the child with its own
_trace: { started: [webSpan] }, so parent and child sat in different traces, which is obviously wrong. Fixed to share the parent's _trace; I'm mentioning this for a reviewer that wonders about the change to the test harness.

@datadog-datadog-prod-us1-2

datadog-datadog-prod-us1-2 Bot commented Aug 13, 2026

Copy link
Copy Markdown

Tests

🎉 All green!

🧪 All tests passed
❄️ No new flaky tests detected

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

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

The shared web-tags cache records "no web-server ancestor" for a span and
never revisits it, but that answer expires: plugins set `span.type` after
creating the span — TracingPlugin.startSpan activates it before addRequestTags
runs — so a child created in that window walks past an ancestor that is about
to become a web-server span, and caches a miss for a chain that is about to
have one.

Promotion can't find those descendants, since the walk only goes upwards. So a
promotion now bumps a generation counter, and an empty answer older than the
counter is walked again on the next lookup. Resolved answers are untouched (the
cached bag is the ancestor's live tag object), and a span with no parent is
stamped as permanently empty, since only its own promotion could change it and
onTagsUpdate already handles that. When a re-walk turns an empty answer into a
real one, the cache publishes resolvedCh for that span, the same announcement a
promoted span gets, so a consumer doesn't have to care which way the ancestry
appeared.

The counter lives on the trace, not in the module. A promotion can only
invalidate empty answers within its own trace, because the walk follows
`_parentId` through `_trace.started` and never leaves it — while a
process-global counter would have every HTTP request's promotion invalidate
empty answers in unrelated traces, making a long-lived non-web span re-walk its
chain once per request served elsewhere, from the storage-enter path.

Invalidation alone fixes nothing, because both consumers only ask the cache
while building their per-span state, and the spans this affects already have
theirs built. So each now asks again for state built from an empty answer:

- the OTEP-4947 writer re-checks on re-entry when a record was built with no
  web-server ancestor, and attaches the endpoint or enlists the record for the
  request's endpoint announcement. Guarded so a re-entrant announcement from
  inside the lookup can't append the endpoint twice.
- the wall profiler re-checks in #getProfilingContext when the snapshot it
  holds has no webTags, since #spanTagsUpdated only fires for a span promoted
  itself, never for descendants that walked past it beforehand.

Both re-checks cost two property reads plus, at most, the cache's own
generation compare — a walk only happens when a promotion in that trace has
actually invalidated something.

Two test-harness inaccuracies are fixed along the way, both of which had been
hiding behaviour rather than testing it: web-tags-cache.spec.js's makeSpan
returned a fresh object from context() per call, so spying on it counted calls
on a throwaway and the "walks the parent chain once" assertion held vacuously;
and wall.spec.js's makeChildSpan gave the child its own _trace object, so
parent and child were in different traces, which no real trace chunk is.

Reported by codex on #9210 and #9805.
@szegedi
szegedi force-pushed the szegedi/web-tags-cache-stale-miss branch from c2b9093 to 2fa615a Compare August 13, 2026 10:49
@pr-commenter

pr-commenter Bot commented Aug 13, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-08-13 11:05:17

Comparing candidate commit 2fa615a in PR branch szegedi/web-tags-cache-stale-miss with baseline commit 988a3a4 in branch master.

📊 Benchmarking dashboard

Found 1 performance improvements and 0 performance regressions! Performance is the same for 2310 metrics, 47 unstable metrics.

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:encoders-0.4-events-native-20

  • 🟩 max_rss_usage [-9.860MB; -4.480MB] or [-7.073%; -3.214%]

Unstable benchmarks

These benchmarks have a confidence interval too wide to call a change; treat them as noise rather than signal.

scenario:appsec-appsec-enabled-24

  • unstable execution_time [-207248.411µs; +208858.345µs] or [-7.594%; +7.653%]

scenario:appsec-appsec-enabled-26

  • unstable execution_time [-197.374ms; +254.543ms] or [-7.614%; +9.820%]

scenario:appsec-appsec-enabled-with-attacks-24

  • unstable execution_time [-166.155ms; +158.565ms] or [-5.296%; +5.054%]

scenario:appsec-appsec-enabled-with-attacks-26

  • unstable execution_time [-187643.690µs; +187645.957µs] or [-6.347%; +6.347%]

scenario:appsec-control-20

  • unstable execution_time [-115.410ms; +121.992ms] or [-6.948%; +7.344%]

scenario:appsec-control-24

  • unstable execution_time [-116.019ms; +119.486ms] or [-9.181%; +9.455%]

scenario:appsec-control-26

  • unstable execution_time [-126.994ms; +130.938ms] or [-10.072%; +10.384%]

scenario:appsec-iast-no-vulnerability-control-20

  • unstable execution_time [-15147.306µs; +15395.789µs] or [-5.905%; +6.001%]

scenario:appsec-iast-no-vulnerability-iast-enabled-default-config-20

  • unstable execution_time [-7.749ms; +17.804ms] or [-3.081%; +7.079%]

scenario:appsec-iast-startup-time-iast-enabled-20

  • unstable execution_time [-12.695ms; +33.833ms] or [-3.104%; +8.272%]

scenario:debugger-line-probe-with-snapshot-default-20

  • unstable cpu_user_time [-37.680s; +59.907s] or [-158.128%; +251.400%]
  • unstable execution_time [-47.754s; +75.939s] or [-172.510%; +274.324%]
  • unstable instructions [-140.4G instructions; +223.7G instructions] or [-95.847%; +152.713%]
  • unstable max_rss_usage [-36.557MB; +57.986MB] or [-20.742%; +32.901%]
  • unstable throughput [-1159.916op/s; +734.387op/s] or [-53.989%; +34.183%]

scenario:debugger-line-probe-with-snapshot-default-24

  • unstable cpu_user_time [-28.997s; +9.623s] or [-127.052%; +42.162%]
  • unstable execution_time [-38.312s; +12.679s] or [-142.501%; +47.158%]
  • unstable instructions [-79.4G instructions; +27.6G instructions] or [-61.501%; +21.351%]
  • unstable max_rss_usage [-70.825MB; +23.285MB] or [-33.770%; +11.102%]
  • unstable throughput [-289.150op/s; +638.770op/s] or [-13.670%; +30.199%]

scenario:debugger-line-probe-with-snapshot-default-26

  • unstable cpu_user_time [-41.765s; +39.134s] or [-136.913%; +128.288%]
  • unstable execution_time [-53.374s; +50.693s] or [-147.082%; +139.694%]
  • unstable instructions [-145.2G instructions; +121.9G instructions] or [-87.835%; +73.764%]
  • unstable max_rss_usage [-105.434MB; +94.327MB] or [-45.320%; +40.546%]
  • unstable throughput [-982.592op/s; +1380.834op/s] or [-51.123%; +71.843%]

scenario:debugger-line-probe-with-snapshot-minimal-20

  • unstable cpu_user_time [-12.358s; +4.027s] or [-76.925%; +25.064%]
  • unstable execution_time [-15.675s; +5.133s] or [-87.322%; +28.594%]
  • unstable instructions [-29.9G instructions; +9.7G instructions] or [-26.842%; +8.732%]
  • unstable max_rss_usage [-30.224MB; +10.160MB] or [-18.321%; +6.159%]
  • unstable throughput [-204.559op/s; +600.207op/s] or [-8.768%; +25.727%]

scenario:debugger-line-probe-with-snapshot-minimal-24

  • unstable cpu_user_time [-13.531s; +20.623s] or [-84.151%; +128.258%]
  • unstable execution_time [-17.375s; +26.717s] or [-96.508%; +148.394%]
  • unstable instructions [-33.8G instructions; +45.3G instructions] or [-31.559%; +42.324%]
  • unstable max_rss_usage [-70.218MB; +108.278MB] or [-36.645%; +56.508%]
  • unstable throughput [-1135.696op/s; +907.559op/s] or [-49.353%; +39.439%]

scenario:debugger-line-probe-without-snapshot-24

  • unstable instructions [-25.9G instructions; +3.2G instructions] or [-14.860%; +1.860%]

scenario:debugger-line-probe-without-snapshot-26

  • unstable instructions [-15949.1M instructions; +16519.8M instructions] or [-8.135%; +8.426%]
  • unstable max_rss_usage [-24.816MB; +18.918MB] or [-6.769%; +5.160%]

scenario:dogstatsd-with-tags-20

  • unstable cpu_user_time [-294.801ms; +363.578ms] or [-5.879%; +7.251%]
  • unstable execution_time [-296.438ms; +365.516ms] or [-5.828%; +7.186%]
  • unstable throughput [-128927.779op/s; +107122.647op/s] or [-7.817%; +6.495%]

scenario:plugin-graphql-long-with-depth-and-collapse-off-20

  • unstable max_rss_usage [-25.061MB; +22.715MB] or [-6.297%; +5.707%]

scenario:plugin-graphql-long-with-depth-off-20

  • unstable max_rss_usage [-5.089MB; +8.229MB] or [-4.009%; +6.482%]

scenario:plugin-graphql-long-with-depth-off-26

  • unstable max_rss_usage [-45.756MB; +8.281MB] or [-24.207%; +4.381%]

scenario:plugin-graphql-long-with-depth-on-max-20

  • unstable cpu_user_time [-584.465ms; +591.576ms] or [-5.081%; +5.143%]
  • unstable execution_time [-591.193ms; +608.905ms] or [-5.029%; +5.180%]
  • unstable throughput [-3.566op/s; +3.464op/s] or [-5.210%; +5.061%]

@codecov

codecov Bot commented Aug 13, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.52%. Comparing base (988a3a4) to head (2fa615a).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #9805      +/-   ##
==========================================
- Coverage   98.53%   98.52%   -0.02%     
==========================================
  Files         972      973       +1     
  Lines      141744   142099     +355     
  Branches    12317    12711     +394     
==========================================
+ Hits       139669   139997     +328     
- Misses       2075     2102      +27     
Flag Coverage Δ
aiguard 57.70% <ø> (-0.03%) ⬇️
aiguard-integration 55.87% <ø> (-0.01%) ⬇️
apm-bucket-0 57.19% <ø> (-0.03%) ⬇️
apm-bucket-1 63.32% <ø> (-0.02%) ⬇️
apm-bucket-2 62.17% <ø> (-0.03%) ⬇️
apm-bucket-3 59.76% <ø> (-0.03%) ⬇️
apm-capabilities-tracing 62.63% <93.93%> (+<0.01%) ⬆️
apm-integrations-aerospike 56.24% <ø> (-0.03%) ⬇️
apm-integrations-confluentinc-kafka-javascript 61.15% <ø> (-0.03%) ⬇️
apm-integrations-couchbase 56.68% <ø> (-0.03%) ⬇️
apm-integrations-http 61.86% <ø> (-0.02%) ⬇️
apm-integrations-kafkajs 61.68% <ø> (-0.03%) ⬇️
apm-integrations-next 59.37% <ø> (-0.03%) ⬇️
apm-integrations-prisma 58.48% <ø> (-0.02%) ⬇️
appsec 72.06% <ø> (-0.05%) ⬇️
appsec-express_fastify_graphql 69.39% <ø> (-0.02%) ⬇️
appsec-integration 49.98% <ø> (-0.05%) ⬇️
appsec-kafka_ldapjs_lodash 63.37% <ø> (-0.02%) ⬇️
appsec-mongodb-core_mongoose_mysql 66.83% <ø> (-0.02%) ⬇️
appsec-next 56.62% <ø> (-0.02%) ⬇️
appsec-node-serialize_passport_postgres 66.25% <ø> (-0.02%) ⬇️
appsec-sourcing_stripe_template 64.68% <ø> (-0.02%) ⬇️
debugger 64.20% <ø> (-0.01%) ⬇️
instrumentations-bucket-0 51.64% <ø> (-0.03%) ⬇️
instrumentations-bucket-1 59.62% <ø> (-0.03%) ⬇️
instrumentations-bucket-10 60.85% <ø> (-0.02%) ⬇️
instrumentations-bucket-11 61.51% <ø> (-0.02%) ⬇️
instrumentations-bucket-12 51.55% <ø> (-0.03%) ⬇️
instrumentations-bucket-13 52.39% <ø> (-0.03%) ⬇️
instrumentations-bucket-14 51.66% <ø> (-0.03%) ⬇️
instrumentations-bucket-2 52.87% <ø> (-0.03%) ⬇️
instrumentations-bucket-3 53.53% <ø> (-0.03%) ⬇️
instrumentations-bucket-4 58.68% <ø> (-0.03%) ⬇️
instrumentations-bucket-5 49.37% <ø> (-0.03%) ⬇️
instrumentations-bucket-6 60.24% <ø> (-0.03%) ⬇️
instrumentations-bucket-7 51.84% <ø> (-0.03%) ⬇️
instrumentations-bucket-8 58.36% <ø> (-0.03%) ⬇️
instrumentations-bucket-9 57.22% <ø> (-0.03%) ⬇️
instrumentations-instrumentation-couchbase 50.89% <ø> (-0.03%) ⬇️
instrumentations-integration-esbuild 34.02% <ø> (-0.03%) ⬇️
llmobs-ai_anthropic_bedrock 62.83% <ø> (-0.02%) ⬇️
llmobs-bucket-1 61.31% <ø> (-0.02%) ⬇️
llmobs-openai 61.71% <ø> (-0.02%) ⬇️
llmobs-openai-agents_vertex-ai 59.99% <ø> (-0.02%) ⬇️
llmobs-sdk 66.74% <ø> (-0.03%) ⬇️
master-coverage 98.52% <100.00%> (?)
openfeature 55.63% <ø> (ø)
openfeature-unit 53.26% <ø> (-0.03%) ⬇️
platform-core_esbuild_instrumentations-misc 41.08% <ø> (-0.04%) ⬇️
platform-integration 60.38% <ø> (ø)
platform-shimmer_unit-guardrails_webpack 38.67% <ø> (-0.04%) ⬇️
plugins-bucket-0 56.90% <ø> (-0.02%) ⬇️
plugins-bucket-1 53.97% <ø> (ø)
plugins-bucket-11 61.44% <ø> (-0.03%) ⬇️
plugins-bucket-17 61.26% <ø> (-0.03%) ⬇️
plugins-bucket-18 61.89% <ø> (-0.02%) ⬇️
plugins-bucket-19 61.28% <ø> (-0.03%) ⬇️
plugins-bucket-20 63.69% <ø> (-0.03%) ⬇️
plugins-bucket-4 58.28% <ø> (-0.03%) ⬇️
plugins-bullmq_cassandra_cookie 61.34% <ø> (-0.03%) ⬇️
plugins-cookie-parser_crypto_dd-trace-api 56.33% <ø> (-0.03%) ⬇️
plugins-fetch_fs_generic-pool 58.19% <ø> (-0.03%) ⬇️
plugins-google-cloud-pubsub_grpc_handlebars 64.11% <ø> (-0.03%) ⬇️
plugins-hapi_hono_ioredis 59.86% <ø> (-0.03%) ⬇️
plugins-knex_langgraph_ldapjs 55.04% <ø> (-0.03%) ⬇️
plugins-light-my-request_limitd-client_lodash 58.34% <ø> (-0.03%) ⬇️
plugins-mariadb_memcached_mercurius 61.26% <ø> (-0.02%) ⬇️
plugins-mongodb_mongodb-core_mongoose 59.22% <ø> (-0.03%) ⬇️
plugins-multer_mysql_mysql2 58.81% <ø> (-0.03%) ⬇️
plugins-nats_node-serialize_opensearch 60.36% <ø> (-0.03%) ⬇️
plugins-passport-http_pino_postgres 58.56% <ø> (-0.06%) ⬇️
plugins-process_pug_redis 57.36% <ø> (-0.03%) ⬇️
plugins-undici_url_valkey 57.99% <ø> (-0.03%) ⬇️
plugins-vm_winston_ws 59.56% <ø> (-0.03%) ⬇️
profiling 61.71% <100.00%> (+0.03%) ⬆️
serverless-aws-sdk-aws-sdk 55.10% <ø> (-0.02%) ⬇️
serverless-aws-sdk-base-inject-field 50.87% <ø> (-0.03%) ⬇️
serverless-aws-sdk-bedrockruntime 54.63% <ø> (-0.02%) ⬇️
serverless-aws-sdk-client 56.19% <ø> (-0.03%) ⬇️
serverless-aws-sdk-dynamodb 55.48% <ø> (-0.02%) ⬇️
serverless-aws-sdk-eventbridge 49.67% <ø> (-0.02%) ⬇️
serverless-aws-sdk-kinesis 59.05% <ø> (-0.02%) ⬇️
serverless-aws-sdk-lambda 57.21% <ø> (-0.02%) ⬇️
serverless-aws-sdk-s3 55.56% <ø> (-0.02%) ⬇️
serverless-aws-sdk-serverless-peer-service 59.31% <ø> (-0.02%) ⬇️
serverless-aws-sdk-sns 59.85% <ø> (-0.02%) ⬇️
serverless-aws-sdk-sqs 60.27% <ø> (-0.02%) ⬇️
serverless-aws-sdk-stepfunctions 55.39% <ø> (-0.02%) ⬇️
serverless-aws-sdk-util 51.40% <ø> (-0.03%) ⬇️
serverless-bucket-0 54.02% <ø> (ø)
serverless-bucket-1 58.82% <ø> (-0.03%) ⬇️
test-optimization-cucumber 71.21% <ø> (-0.04%) ⬇️
test-optimization-cypress 64.95% <ø> (+0.06%) ⬆️
test-optimization-jest 72.64% <ø> (+<0.01%) ⬆️
test-optimization-mocha 72.20% <ø> (+0.03%) ⬆️
test-optimization-playwright-playwright-atr 59.94% <ø> (+0.09%) ⬆️
test-optimization-playwright-playwright-efd 60.10% <ø> (+0.09%) ⬆️
test-optimization-playwright-playwright-final-status 60.26% <ø> (+0.11%) ⬆️
test-optimization-playwright-playwright-impacted-tests 59.81% <ø> (+0.24%) ⬆️
test-optimization-playwright-playwright-reporting 61.31% <ø> (+0.20%) ⬆️
test-optimization-playwright-playwright-test-management 60.77% <ø> (-0.17%) ⬇️
test-optimization-playwright-playwright-test-span 59.99% <ø> (-0.13%) ⬇️
test-optimization-selenium 59.15% <ø> (-0.15%) ⬇️
test-optimization-testopt 57.73% <ø> (+0.06%) ⬆️
test-optimization-vitest 73.35% <ø> (+0.02%) ⬆️
test-optimization-vitest-browser 58.98% <ø> (-0.10%) ⬇️
test-optimization-webdriverio 65.34% <ø> (+0.04%) ⬆️

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

☔ View full report in Codecov by Harness.
📢 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.

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