Skip to content

feat: report assertion failures to Datadog RUM on cloud builds - #14254

Closed
mattmillerai wants to merge 2 commits into
mainfrom
matt/be-5046-assert-rum-reporter
Closed

feat: report assertion failures to Datadog RUM on cloud builds#14254
mattmillerai wants to merge 2 commits into
mainfrom
matt/be-5046-assert-rum-reporter

Conversation

@mattmillerai

Copy link
Copy Markdown
Contributor

ELI-5

When the app catches itself in an impossible state it calls assert(). Today that failure gets shouted into the browser console and nowhere else on cloud production, so nobody ever hears it. This wires those failures into Datadog Error Tracking for cloud builds — with a mute button so a broken render loop can't flood the pipe.

Summary

Assertion failures are invisible on cloud production: the only assert reporter (src/main.ts) reports to Sentry when isDesktop and toasts when isNightly, and both are false on cloud, leaving invariant failures console-only. This adds an isCloud branch that forwards them to Datadog RUM Error Tracking, which is already initialised for cloud in src/bootstrap.ts.

Changes

  • What: new src/platform/telemetry/assertRumReporter.tsreportAssertFailureToRum(message) sends datadogRum.addError(new Error(message), { source: 'invariant-assert' }), deduplicated by exact message and capped at 20 reports per session. src/main.ts calls it from a new isCloud branch inside the existing setAssertReporter callback; the desktop and nightly branches are untouched, and src/base/assert.ts (contract and console behaviour) is unchanged.
  • Dependencies: none — @datadog/browser-rum is already a dependency and is loaded on cloud by bootstrap.ts before main.ts runs, so the lazy import() resolves from the module cache.

Review Focus

addError rather than addAction: errors land in Error Tracking with stack traces and message-based grouping, which is what makes them monitorable/alertable. The existing rumBeforeSend filter passes them through — its drop rules only match intervention:, ResizeObserver loop, and network noise from a host allowlist — and it auto-tags error.origin: first_party from the /assets/ stack frames.

The Error is constructed synchronously in the reporter, before the dynamic import() is awaited, so its stack captures the real assert() call site (assert() invokes the reporter synchronously). There is a unit test that fails if this construction moves into the .then callback — verified by mutating the source.

Two judgment calls worth a look:

  1. The module promise is cached (rumModule ??= import('@datadog/browser-rum')) instead of calling import() per report. On cloud this is behaviourally identical — the module registry already caches the module — but it means a rejected import is cached too, so a one-off chunk-load failure would silently disable assert reporting for the rest of the session rather than retrying on the next assert. Given bootstrap.ts has already resolved the SDK on cloud, that failure path is close to unreachable, and dropping telemetry beats retrying a broken import up to 20 times. It also matters for testability: Vitest 4's mocker re-runs the vi.mock factory on each dynamic import, so without the cache the second and subsequent reports land on throwaway mock instances and the dedupe/cap behaviour can't be observed.
  2. The dedupe Set doubles as the cap counter — every reported message is added to it, so reportedMessages.size is the report count. One piece of state, no separate counter to keep in sync.

Bundle impact: main.ts gains a static import of the ~30-line reporter module, not of the RUM SDK. The SDK reference is an erased import type plus a lazy import(), and isCloud folds to a build-time constant, so non-cloud builds dead-code-eliminate the call and drop the module entirely.

Verification

pnpm typecheck, pnpm lint, pnpm format, pnpm knip, and pnpm vitest run src/platform/telemetry/assertRumReporter.test.ts src/base/assert.test.ts (11 passed) are all green. New tests cover per-message dedupe, the 20-per-session cap, and synchronous error construction.

This change is purely additive — it adds a reporting path and denies no capability, so there is no capability-denial claim to falsify.

@mattmillerai mattmillerai added agent-coded Opened by the agent-work code loop cursor-review Trigger multi-model Cursor agent review on this PR labels Jul 29, 2026
@coderabbitai

coderabbitai Bot commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 46 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: bbf1102e-87a6-44cc-a4a2-64bb9968fd4f

📥 Commits

Reviewing files that changed from the base of the PR and between 4c643e9 and 03c0760.

📒 Files selected for processing (6)
  • src/base/assert.ts
  • src/main.ts
  • src/platform/telemetry/assertRumReporter.test.ts
  • src/platform/telemetry/assertRumReporter.ts
  • src/scripts/changeTracker.test.ts
  • src/scripts/changeTracker.ts

Comment @coderabbitai help to get the list of available commands.

@mattmillerai
mattmillerai marked this pull request as ready for review July 29, 2026 08:19
@mattmillerai
mattmillerai requested a review from a team July 29, 2026 08:19
@dosubot dosubot Bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Jul 29, 2026
@dosubot

dosubot Bot commented Jul 29, 2026

Copy link
Copy Markdown

📄 Knowledge review

Dosu skipped reviewing this PR because your organization has used its 200 included credits for the month. Your usage will reset on 2026-08-01. To have Dosu review this PR before then, ask your organization admin to upgrade to a pro account.


Leave Feedback Ask Dosu about ComfyUI_frontend Add Dosu to your team

@github-actions

github-actions Bot commented Jul 29, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 07/29/2026, 09:45:45 AM UTC

Links

🎭 Playwright: ✅ 1759 passed, 0 failed

📊 Browser Reports
  • chromium: View Report (✅ 1738 / ❌ 0 / ⚠️ 0 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 18 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

📦 Bundle: 8.14 MB gzip 🔴 +213 B

Details

Summary

  • Raw size: 34.2 MB baseline 34.2 MB — 🔴 +314 B
  • Gzip: 8.14 MB baseline 8.14 MB — 🔴 +213 B
  • Brotli: 5.63 MB baseline 5.63 MB — 🔴 +268 B
  • Bundles: 418 current • 418 baseline • 140 added / 140 removed

Category Glance
Data & Services 🔴 +314 B (3.42 MB) · Vendor & Third-Party ⚪ 0 B (15.7 MB) · Other ⚪ 0 B (12.5 MB) · Graph Workspace ⚪ 0 B (1.28 MB) · Panels & Settings ⚪ 0 B (551 kB) · Utilities & Hooks ⚪ 0 B (369 kB) · + 5 more

App Entry Points — 3.63 kB (baseline 3.63 kB) • ⚪ 0 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-CsWqoSZA.js (removed) 3.63 kB 🟢 -3.63 kB 🟢 -1.82 kB 🟢 -1.58 kB
assets/index-DH-GvCZT.js (new) 3.63 kB 🔴 +3.63 kB 🔴 +1.82 kB 🔴 +1.57 kB

Status: 1 added / 1 removed

Graph Workspace — 1.28 MB (baseline 1.28 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-Brui13si.js (new) 1.28 MB 🔴 +1.28 MB 🔴 +275 kB 🔴 +207 kB
assets/GraphView-DjInXjPN.js (removed) 1.28 MB 🟢 -1.28 MB 🟢 -275 kB 🟢 -207 kB

Status: 1 added / 1 removed / 1 unchanged

Views & Navigation — 112 kB (baseline 112 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-BgPtVHqY.js (new) 25 kB 🔴 +25 kB 🔴 +6.25 kB 🔴 +5.54 kB
assets/CloudSurveyView-DSlXnsOc.js (removed) 25 kB 🟢 -25 kB 🟢 -6.26 kB 🟢 -5.54 kB
assets/CloudLoginView-BZA_I9ZM.js (new) 11.6 kB 🔴 +11.6 kB 🔴 +3.14 kB 🔴 +2.76 kB
assets/CloudLoginView-C9fVR7y7.js (removed) 11.6 kB 🟢 -11.6 kB 🟢 -3.14 kB 🟢 -2.75 kB
assets/CloudSignupView-CJobxbyg.js (new) 9.96 kB 🔴 +9.96 kB 🔴 +2.81 kB 🔴 +2.47 kB
assets/CloudSignupView-XPWLSrn-.js (removed) 9.96 kB 🟢 -9.96 kB 🟢 -2.81 kB 🟢 -2.47 kB
assets/CloudLayoutView-Cr356rip.js (removed) 9.54 kB 🟢 -9.54 kB 🟢 -2.35 kB 🟢 -2.02 kB
assets/CloudLayoutView-CWLnKSue.js (new) 9.54 kB 🔴 +9.54 kB 🔴 +2.35 kB 🔴 +2.03 kB
assets/UserCheckView-3WqeBDkU.js (removed) 8.8 kB 🟢 -8.8 kB 🟢 -2.22 kB 🟢 -1.93 kB
assets/UserCheckView-DDEf7J3B.js (new) 8.8 kB 🔴 +8.8 kB 🔴 +2.22 kB 🔴 +1.93 kB
assets/WidgetTextPreview-BAYehdVD.js (removed) 6.13 kB 🟢 -6.13 kB 🟢 -2.16 kB 🟢 -1.92 kB
assets/WidgetTextPreview-CdAGYxTp.js (new) 6.13 kB 🔴 +6.13 kB 🔴 +2.16 kB 🔴 +1.92 kB
assets/CloudSubscriptionRedirectView-Burm4LR1.js (removed) 6.06 kB 🟢 -6.06 kB 🟢 -2.26 kB 🟢 -1.97 kB
assets/CloudSubscriptionRedirectView-H6uRADqx.js (new) 6.06 kB 🔴 +6.06 kB 🔴 +2.26 kB 🔴 +1.97 kB
assets/UserSelectView-DlePHLP-.js (new) 5.54 kB 🔴 +5.54 kB 🔴 +1.99 kB 🔴 +1.74 kB
assets/UserSelectView-vyIvkPmT.js (removed) 5.54 kB 🟢 -5.54 kB 🟢 -1.99 kB 🟢 -1.74 kB
assets/CloudForgotPasswordView-BFf7odb1.js (new) 5.15 kB 🔴 +5.15 kB 🔴 +1.76 kB 🔴 +1.54 kB
assets/CloudForgotPasswordView-Cy2ntLUq.js (removed) 5.15 kB 🟢 -5.15 kB 🟢 -1.76 kB 🟢 -1.54 kB
assets/CloudAuthTimeoutView-BfLPqB9Z.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.57 kB 🔴 +1.37 kB
assets/CloudAuthTimeoutView-lynN79Q6.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.57 kB 🟢 -1.36 kB
assets/OAuthLayoutView-BvHttB-v.js (new) 1.36 kB 🔴 +1.36 kB 🔴 +733 B 🔴 +619 B
assets/OAuthLayoutView-wSs82b-U.js (removed) 1.36 kB 🟢 -1.36 kB 🟢 -735 B 🟢 -620 B
assets/WidgetTextPreview-DPcFH5tN.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +91 B
assets/WidgetTextPreview-Y1VNL8kJ.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -89 B

Status: 12 added / 12 removed / 4 unchanged

Panels & Settings — 551 kB (baseline 551 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-Bg4a7Yab.js (removed) 49.5 kB 🟢 -49.5 kB 🟢 -9.97 kB 🟢 -8.83 kB
assets/KeybindingPanel-DwULj01u.js (new) 49.5 kB 🔴 +49.5 kB 🔴 +9.97 kB 🔴 +8.83 kB
assets/SecretsPanel-B6GLqi8m.js (removed) 31.3 kB 🟢 -31.3 kB 🟢 -7.62 kB 🟢 -6.67 kB
assets/SecretsPanel-Bpv7ypOR.js (new) 31.3 kB 🔴 +31.3 kB 🔴 +7.62 kB 🔴 +6.67 kB
assets/CreditsPanel-BHVLtjqM.js (new) 16 kB 🔴 +16 kB 🔴 +4.66 kB 🔴 +4.1 kB
assets/CreditsPanel-DXNVgrkD.js (removed) 16 kB 🟢 -16 kB 🟢 -4.66 kB 🟢 -4.12 kB
assets/SubscriptionPanel-D4SROA0l.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.65 kB 🔴 +3.23 kB
assets/SubscriptionPanel-yK4knELj.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.65 kB 🟢 -3.2 kB
assets/AboutPanel-CYl4snsI.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.06 kB 🔴 +2.74 kB
assets/AboutPanel-DCnu4TjK.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.06 kB 🟢 -2.74 kB
assets/ExtensionPanel-9IMICb3g.js (removed) 9.24 kB 🟢 -9.24 kB 🟢 -2.54 kB 🟢 -2.25 kB
assets/ExtensionPanel-Ce5ei_Dc.js (new) 9.24 kB 🔴 +9.24 kB 🔴 +2.54 kB 🔴 +2.25 kB
assets/ServerConfigPanel-Bj-XX5-x.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -1.97 kB 🟢 -1.75 kB
assets/ServerConfigPanel-CuEsXr0r.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +1.97 kB 🔴 +1.75 kB
assets/UserPanel-BEjvIlIU.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.81 kB 🔴 +1.57 kB
assets/UserPanel-kTE_DBrE.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.81 kB 🟢 -1.57 kB
assets/refreshRemoteConfig-BDYaUUl9.js (removed) 2.97 kB 🟢 -2.97 kB 🟢 -1.27 kB 🟢 -1.11 kB
assets/refreshRemoteConfig-CdluQ4-j.js (new) 2.97 kB 🔴 +2.97 kB 🔴 +1.27 kB 🔴 +1.11 kB
assets/cloudRemoteConfig-B82rDC6H.js (new) 988 B 🔴 +988 B 🔴 +536 B 🔴 +453 B
assets/cloudRemoteConfig-CQatJLIF.js (removed) 988 B 🟢 -988 B 🟢 -538 B 🟢 -454 B
assets/refreshRemoteConfig-CD02oEAD.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +82 B
assets/refreshRemoteConfig-DwSkRaXk.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -82 B

Status: 11 added / 11 removed / 15 unchanged

User & Accounts — 29.1 kB (baseline 29.1 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-C2TSTZY_.js (new) 12.3 kB 🔴 +12.3 kB 🔴 +4.18 kB 🔴 +3.65 kB
assets/SignUpForm-MfYfc2iA.js (removed) 12.3 kB 🟢 -12.3 kB 🟢 -4.18 kB 🟢 -3.65 kB
assets/auth-B088wUcO.js (new) 3.69 kB 🔴 +3.69 kB 🔴 +1.3 kB 🔴 +1.12 kB
assets/auth-DO7yDh-R.js (removed) 3.69 kB 🟢 -3.69 kB 🟢 -1.3 kB 🟢 -1.12 kB
assets/usePostAuthRedirect-D-eJ9zRm.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.27 kB 🟢 -1.11 kB
assets/usePostAuthRedirect-DOhZuJe0.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.27 kB 🔴 +1.11 kB
assets/UpdatePasswordContent-CNcS5N-d.js (removed) 1.91 kB 🟢 -1.91 kB 🟢 -872 B 🟢 -760 B
assets/UpdatePasswordContent-CZqVASgo.js (new) 1.91 kB 🔴 +1.91 kB 🔴 +871 B 🔴 +760 B
assets/authStore-BIMDnozM.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -104 B
assets/authStore-Bn33dvSb.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +104 B
assets/workspaceAuthStore--MKbRnKi.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +109 B
assets/workspaceAuthStore-iu3p1_8P.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -104 B
assets/auth-ASvJelCS.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +87 B
assets/auth-BQYobRFX.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -74 B

Status: 7 added / 7 removed / 3 unchanged

Editors & Dialogs — 121 kB (baseline 121 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-BVqej7nn.js (removed) 89.9 kB 🟢 -89.9 kB 🟢 -19.2 kB 🟢 -16.4 kB
assets/ComfyHubPublishDialog-DGA0DQa8.js (new) 89.9 kB 🔴 +89.9 kB 🔴 +19.2 kB 🔴 +16.5 kB
assets/useShareDialog-CLR4ieuK.js (new) 23.7 kB 🔴 +23.7 kB 🔴 +5.58 kB 🔴 +4.96 kB
assets/useShareDialog-Tx_2kbCb.js (removed) 23.7 kB 🟢 -23.7 kB 🟢 -5.58 kB 🟢 -4.96 kB
assets/feedbackDialog-Bh6bILTf.js (removed) 4.5 kB 🟢 -4.5 kB 🟢 -1.9 kB 🟢 -1.62 kB
assets/feedbackDialog-DigNGS0p.js (new) 4.5 kB 🔴 +4.5 kB 🔴 +1.9 kB 🔴 +1.62 kB
assets/ComfyHubPublishDialog-CB-jGoFl.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -93 B
assets/ComfyHubPublishDialog-CSEbdXjb.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +92 B
assets/useSubscriptionDialog-CuLzYH3-.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +93 B
assets/useSubscriptionDialog-EfmIlsoH.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -93 B

Status: 5 added / 5 removed / 1 unchanged

UI Components — 64.8 kB (baseline 64.8 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-D6kmaXNN.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.77 kB 🔴 +3.34 kB
assets/ComfyQueueButton-D9baAEh2.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.76 kB 🟢 -3.34 kB
assets/useTerminalTabs-COuWXkIG.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.72 kB 🔴 +3.29 kB
assets/useTerminalTabs-D9ioTRRp.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.72 kB 🟢 -3.29 kB
assets/InviteMembersForm-ArNd1KPk.js (new) 8.02 kB 🔴 +8.02 kB 🔴 +2.67 kB 🔴 +2.38 kB
assets/InviteMembersForm-B1UZTOzy.js (removed) 8.02 kB 🟢 -8.02 kB 🟢 -2.68 kB 🟢 -2.39 kB
assets/SubscribeButton-Bbc0K9xV.js (new) 2.18 kB 🔴 +2.18 kB 🔴 +988 B 🔴 +864 B
assets/SubscribeButton-ik8Qx8jQ.js (removed) 2.18 kB 🟢 -2.18 kB 🟢 -988 B 🟢 -864 B
assets/cloudFeedbackTopbarButton-BAR2O_m9.js (new) 768 B 🔴 +768 B 🔴 +453 B 🔴 +412 B
assets/cloudFeedbackTopbarButton-DVecPQbn.js (removed) 768 B 🟢 -768 B 🟢 -452 B 🟢 -411 B
assets/ComfyQueueButton-BT9lhmuw.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +90 B
assets/ComfyQueueButton-PlVg1-BR.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -90 B

Status: 6 added / 6 removed / 8 unchanged

Data & Services — 3.42 MB (baseline 3.42 MB) • 🔴 +314 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-CJFB_-Uu.js (new) 3.15 MB 🔴 +3.15 MB 🔴 +729 kB 🔴 +550 kB
assets/settingStore-CpHIULBI.js (removed) 3.15 MB 🟢 -3.15 MB 🟢 -729 kB 🟢 -549 kB
assets/load3dService-Crmlpzva.js (removed) 132 kB 🟢 -132 kB 🟢 -29.2 kB 🟢 -24.6 kB
assets/load3dService-LVKy6Z4v.js (new) 132 kB 🔴 +132 kB 🔴 +29.2 kB 🔴 +24.6 kB
assets/api-Bc4q5g8S.js (new) 91.4 kB 🔴 +91.4 kB 🔴 +25.3 kB 🔴 +21.7 kB
assets/api-Cf-_NNkp.js (removed) 91.4 kB 🟢 -91.4 kB 🟢 -25.3 kB 🟢 -21.7 kB
assets/workflowShareService-DHv3C81N.js (removed) 16.5 kB 🟢 -16.5 kB 🟢 -4.92 kB 🟢 -4.36 kB
assets/workflowShareService-HimhUrja.js (new) 16.5 kB 🔴 +16.5 kB 🔴 +4.92 kB 🔴 +4.36 kB
assets/keybindingService-CH1j6NXm.js (new) 7.28 kB 🔴 +7.28 kB 🔴 +1.9 kB 🔴 +1.62 kB
assets/keybindingService-ZEhjMk7R.js (removed) 7.28 kB 🟢 -7.28 kB 🟢 -1.9 kB 🟢 -1.62 kB
assets/releaseStore-BWYial9Z.js (removed) 6.77 kB 🟢 -6.77 kB 🟢 -2.06 kB 🟢 -1.8 kB
assets/releaseStore-C7tddLti.js (new) 6.77 kB 🔴 +6.77 kB 🔴 +2.06 kB 🔴 +1.8 kB
assets/systemStatsStore-CNjnI3FQ.js (new) 4.99 kB 🔴 +4.99 kB 🔴 +1.77 kB 🔴 +1.5 kB
assets/systemStatsStore-D0sPpudS.js (removed) 4.99 kB 🟢 -4.99 kB 🟢 -1.77 kB 🟢 -1.5 kB
assets/userStore-D2aHHYMC.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -930 B 🟢 -826 B
assets/userStore-yY4o095B.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +930 B 🔴 +819 B
assets/audioService-BAfuud55.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +861 B 🔴 +751 B
assets/audioService-D6RiZq5F.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -862 B 🟢 -747 B
assets/dialogService-b_4_C9n0.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +88 B
assets/dialogService-Ck3HYUHk.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -97 B
assets/releaseStore-C-Xz1ZQm.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -82 B
assets/releaseStore-D_SXk7ZZ.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +89 B
assets/settingStore-BjsGHE4i.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -89 B
assets/settingStore-XL7GbIjH.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +87 B
assets/assetsStore-B9B5AZCz.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -83 B
assets/assetsStore-CXm_e4fN.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +85 B
assets/api-BMgoc2pW.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-w9hJJ97x.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 14 added / 14 removed / 3 unchanged

Utilities & Hooks — 369 kB (baseline 369 kB) • ⚪ 0 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BQOQPqlZ.js (removed) 235 kB 🟢 -235 kB 🟢 -52.5 kB 🟢 -42.7 kB
assets/useConflictDetection-Dvxyp71E.js (new) 235 kB 🔴 +235 kB 🔴 +52.5 kB 🔴 +42.7 kB
assets/useLoad3d-Cpmnv2Ys.js (removed) 25.8 kB 🟢 -25.8 kB 🟢 -5.82 kB 🟢 -5.15 kB
assets/useLoad3d-CsjXhzYq.js (new) 25.8 kB 🔴 +25.8 kB 🔴 +5.83 kB 🔴 +5.16 kB
assets/useLoad3dViewer-0s-511BN.js (new) 21.3 kB 🔴 +21.3 kB 🔴 +5.01 kB 🔴 +4.38 kB
assets/useLoad3dViewer-D-ZVg5m0.js (removed) 21.3 kB 🟢 -21.3 kB 🟢 -5 kB 🟢 -4.38 kB
assets/useFeatureFlags-B6roQa_l.js (new) 7.26 kB 🔴 +7.26 kB 🔴 +2.17 kB 🔴 +1.82 kB
assets/useFeatureFlags-CmJS7siG.js (removed) 7.26 kB 🟢 -7.26 kB 🟢 -2.17 kB 🟢 -1.83 kB
assets/useDowngradeToPersonal-Ch4mY34b.js (new) 5.9 kB 🔴 +5.9 kB 🔴 +1.8 kB 🔴 +1.57 kB
assets/useDowngradeToPersonal-eZkh-5yD.js (removed) 5.9 kB 🟢 -5.9 kB 🟢 -1.8 kB 🟢 -1.57 kB
assets/assetPreviewUtil-BGdUjLxY.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1 kB 🟢 -873 B
assets/assetPreviewUtil-DY2F8fUV.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1 kB 🔴 +872 B
assets/useUpstreamValue-D8A-LXKN.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -788 B 🟢 -703 B
assets/useUpstreamValue-utMkezgX.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +787 B 🔴 +701 B
assets/useWorkspaceTierLabel-Cbeb0rX_.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +846 B 🔴 +730 B
assets/useWorkspaceTierLabel-DxrcH-BO.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -844 B 🟢 -728 B
assets/subscriptionCheckoutUtil-dyuckoxb.js (new) 903 B 🔴 +903 B 🔴 +535 B 🔴 +453 B
assets/subscriptionCheckoutUtil-J9TkF82y.js (removed) 903 B 🟢 -903 B 🟢 -537 B 🟢 -455 B
assets/useSessionCookie-Bt2GtnOg.js (removed) 746 B 🟢 -746 B 🟢 -388 B 🟢 -336 B
assets/useSessionCookie-PzVerLmd.js (new) 746 B 🔴 +746 B 🔴 +389 B 🔴 +336 B
assets/useLoad3d-BB6W89Ie.js (new) 311 B 🔴 +311 B 🔴 +163 B 🔴 +147 B
assets/useLoad3d-C_KxukuU.js (removed) 311 B 🟢 -311 B 🟢 -162 B 🟢 -147 B
assets/useSessionCookie-Dkmry_qC.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +83 B
assets/useSessionCookie-DyH8BRMf.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -85 B
assets/useFeatureFlags-C-MA-0bD.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -79 B
assets/useFeatureFlags-DCnztQV9.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +83 B
assets/useLoad3dViewer-BsDFLwgY.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +87 B
assets/useLoad3dViewer-CZ8Yeeeg.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -86 B
assets/useCurrentUser-BjbFi01H.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -85 B
assets/useCurrentUser-Cvo1TGKK.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +94 B

Status: 15 added / 15 removed / 20 unchanged

Vendor & Third-Party — 15.7 MB (baseline 15.7 MB) • ⚪ 0 B

External libraries and shared vendor chunks

Status: 16 unchanged

Other — 12.5 MB (baseline 12.5 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-Joe3u90m.js (removed) 111 kB 🟢 -111 kB 🟢 -28.7 kB 🟢 -24.3 kB
assets/core-ZJM-DXey.js (new) 111 kB 🔴 +111 kB 🔴 +28.7 kB 🔴 +24.3 kB
assets/WidgetSelect-CK6sotar.js (new) 88 kB 🔴 +88 kB 🔴 +20 kB 🔴 +17.1 kB
assets/WidgetSelect-h0RqTUfB.js (removed) 88 kB 🟢 -88 kB 🟢 -20 kB 🟢 -17.1 kB
assets/Load3D-Ba2-03Q3.js (removed) 71.3 kB 🟢 -71.3 kB 🟢 -11.7 kB 🟢 -10 kB
assets/Load3D-DherZBfS.js (new) 71.3 kB 🔴 +71.3 kB 🔴 +11.7 kB 🔴 +10 kB
assets/WorkspaceSettingsPanelContent-D51QxzyI.js (removed) 61.6 kB 🟢 -61.6 kB 🟢 -13.2 kB 🟢 -11.5 kB
assets/WorkspaceSettingsPanelContent-DosMer4a.js (new) 61.6 kB 🔴 +61.6 kB 🔴 +13.2 kB 🔴 +11.5 kB
assets/Preview3d-B9SaDyAE.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.34 kB 🔴 +7.26 kB
assets/Preview3d-CCE1jPmI.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.34 kB 🟢 -7.26 kB
assets/main-D74HssDn.js (removed) 46.7 kB 🟢 -46.7 kB 🟢 -13.8 kB 🟢 -11.9 kB
assets/main-Ph67gFEY.js (new) 46.7 kB 🔴 +46.7 kB 🔴 +13.8 kB 🔴 +11.9 kB
assets/SubscriptionTransitionPreviewWorkspace-CNtCUmLd.js (new) 45.4 kB 🔴 +45.4 kB 🔴 +9.65 kB 🔴 +8.44 kB
assets/SubscriptionTransitionPreviewWorkspace-e_najudi.js (removed) 45.4 kB 🟢 -45.4 kB 🟢 -9.64 kB 🟢 -8.46 kB
assets/SubscriptionRequiredDialogContentUnified-DLZAA8xq.js (removed) 42.1 kB 🟢 -42.1 kB 🟢 -9.37 kB 🟢 -8.16 kB
assets/SubscriptionRequiredDialogContentUnified-gHfI8Y0e.js (new) 42.1 kB 🔴 +42.1 kB 🔴 +9.37 kB 🔴 +8.16 kB
assets/MembersPanelContent-BqmuhWlF.js (new) 41.9 kB 🔴 +41.9 kB 🔴 +8.8 kB 🔴 +7.84 kB
assets/MembersPanelContent-C5SlxPQQ.js (removed) 41.9 kB 🟢 -41.9 kB 🟢 -8.8 kB 🟢 -7.84 kB
assets/WidgetBoundingBoxes-DO_tdJr6.js (new) 33.8 kB 🔴 +33.8 kB 🔴 +9.19 kB 🔴 +8.16 kB
assets/WidgetBoundingBoxes-Dxpax5P9.js (removed) 33.8 kB 🟢 -33.8 kB 🟢 -9.19 kB 🟢 -8.16 kB
assets/WidgetPainter-B1lWLGf6.js (removed) 32.7 kB 🟢 -32.7 kB 🟢 -7.9 kB 🟢 -7 kB
assets/WidgetPainter-DvOlx212.js (new) 32.7 kB 🔴 +32.7 kB 🔴 +7.9 kB 🔴 +7 kB
assets/Load3dViewerContent-2Xs8uOh2.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.29 kB 🟢 -5.45 kB
assets/Load3dViewerContent-CL5CwJkU.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.3 kB 🔴 +5.46 kB
assets/SubscriptionPanelContentWorkspace-BfEM2RpP.js (removed) 26.6 kB 🟢 -26.6 kB 🟢 -6.21 kB 🟢 -5.45 kB
assets/SubscriptionPanelContentWorkspace-CmQ_Wqmv.js (new) 26.6 kB 🔴 +26.6 kB 🔴 +6.21 kB 🔴 +5.45 kB
assets/SubscriptionRequiredDialogContent-BIkQjpUJ.js (new) 26.1 kB 🔴 +26.1 kB 🔴 +6.17 kB 🔴 +5.44 kB
assets/SubscriptionRequiredDialogContent-yXr64P3t.js (removed) 26.1 kB 🟢 -26.1 kB 🟢 -6.17 kB 🟢 -5.43 kB
assets/SubscriptionRequiredDialogContentWorkspace-AmwcYY21.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -5.76 kB 🟢 -5.07 kB
assets/SubscriptionRequiredDialogContentWorkspace-D2UbC28K.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +5.77 kB 🔴 +5.06 kB
assets/WidgetImageCrop-BJufwRZF.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.75 kB 🟢 -5.04 kB
assets/WidgetImageCrop-Db99y-YI.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.75 kB 🔴 +5.04 kB
assets/load3d-B027Hp5a.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.44 kB 🔴 +4.69 kB
assets/load3d-Dzr5emKF.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.43 kB 🟢 -4.69 kB
assets/CurrentUserPopoverWorkspace-B-WiGAgb.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.71 kB 🟢 -4.19 kB
assets/CurrentUserPopoverWorkspace-Khlz-9_0.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +4.71 kB 🔴 +4.19 kB
assets/SignInContent-BnSDQHKt.js (new) 20.3 kB 🔴 +20.3 kB 🔴 +5.13 kB 🔴 +4.48 kB
assets/SignInContent-DjThtZ8G.js (removed) 20.3 kB 🟢 -20.3 kB 🟢 -5.13 kB 🟢 -4.48 kB
assets/WidgetInputNumber-CUMJrw2j.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.83 kB 🔴 +4.29 kB
assets/WidgetInputNumber-ZTHK_km-.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.83 kB 🟢 -4.29 kB
assets/CreditsTile-C1e90Skg.js (removed) 17.2 kB 🟢 -17.2 kB 🟢 -4.57 kB 🟢 -4.03 kB
assets/CreditsTile-F0wv9abC.js (new) 17.2 kB 🔴 +17.2 kB 🔴 +4.57 kB 🔴 +4.03 kB
assets/WidgetRange-CqBbVI0U.js (new) 16.7 kB 🔴 +16.7 kB 🔴 +4.31 kB 🔴 +3.86 kB
assets/WidgetRange-SJNjAi3h.js (removed) 16.7 kB 🟢 -16.7 kB 🟢 -4.31 kB 🟢 -3.86 kB
assets/WidgetRecordAudio-CEXZgF6g.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.63 kB 🟢 -4.13 kB
assets/WidgetRecordAudio-Rxqi_U35.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.63 kB 🔴 +4.13 kB
assets/WaveAudioPlayer-CnA5vjFc.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.5 kB 🟢 -3.06 kB
assets/WaveAudioPlayer-CqRdSanl.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.5 kB 🔴 +3.06 kB
assets/WidgetCurve-B2rjvi9Q.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.51 kB 🟢 -3.17 kB
assets/WidgetCurve-DSsL-Ofn.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.5 kB 🔴 +3.18 kB
assets/TeamWorkspacesDialogContent-bdkWOaBc.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -3 kB 🟢 -2.66 kB
assets/TeamWorkspacesDialogContent-WSGvZpNF.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +3 kB 🔴 +2.66 kB
assets/onboardingCloudRoutes-CD2C-6zf.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -2.76 kB 🟢 -2.39 kB
assets/onboardingCloudRoutes-CwHqs7Lm.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +2.76 kB 🔴 +2.38 kB
assets/Load3DConfiguration-BHnN-uW8.js (new) 8.97 kB 🔴 +8.97 kB 🔴 +2.64 kB 🔴 +2.33 kB
assets/Load3DConfiguration-sKuo6_h9.js (removed) 8.97 kB 🟢 -8.97 kB 🟢 -2.63 kB 🟢 -2.32 kB
assets/SetMemberCreditLimitDialogContent-azn2Epnx.js (removed) 8.54 kB 🟢 -8.54 kB 🟢 -2.37 kB 🟢 -2.07 kB
assets/SetMemberCreditLimitDialogContent-BEJZIVjR.js (new) 8.54 kB 🔴 +8.54 kB 🔴 +2.37 kB 🔴 +2.07 kB
assets/nodeTemplates-C1mzIhNM.js (removed) 8.33 kB 🟢 -8.33 kB 🟢 -2.87 kB 🟢 -2.54 kB
assets/nodeTemplates-D4qdjGG7.js (new) 8.33 kB 🔴 +8.33 kB 🔴 +2.87 kB 🔴 +2.54 kB
assets/NightlySurveyController-BroSC1AZ.js (removed) 7.56 kB 🟢 -7.56 kB 🟢 -2.59 kB 🟢 -2.28 kB
assets/NightlySurveyController-tiPbrE8G.js (new) 7.56 kB 🔴 +7.56 kB 🔴 +2.59 kB 🔴 +2.28 kB
assets/WidgetWithControl-CdV01juI.js (removed) 6.37 kB 🟢 -6.37 kB 🟢 -2.59 kB 🟢 -2.3 kB
assets/WidgetWithControl-DPVa7OEj.js (new) 6.37 kB 🔴 +6.37 kB 🔴 +2.59 kB 🔴 +2.28 kB
assets/tierBenefits-_BPYYE4b.js (new) 6.25 kB 🔴 +6.25 kB 🔴 +2 kB 🔴 +1.74 kB
assets/tierBenefits-C8rCniju.js (removed) 6.25 kB 🟢 -6.25 kB 🟢 -2 kB 🟢 -1.74 kB
assets/CancelSubscriptionDialogContent-BwNJYXmi.js (new) 5.98 kB 🔴 +5.98 kB 🔴 +2.04 kB 🔴 +1.79 kB
assets/CancelSubscriptionDialogContent-Cb2D9ofF.js (removed) 5.98 kB 🟢 -5.98 kB 🟢 -2.04 kB 🟢 -1.79 kB
assets/load3dPreviewExtensions-D7E11lCL.js (removed) 5.94 kB 🟢 -5.94 kB 🟢 -1.84 kB 🟢 -1.62 kB
assets/load3dPreviewExtensions-DpDPlRGI.js (new) 5.94 kB 🔴 +5.94 kB 🔴 +1.85 kB 🔴 +1.63 kB
assets/CreateWorkspaceDialogContent-B149Ai-3.js (new) 5.19 kB 🔴 +5.19 kB 🔴 +1.83 kB 🔴 +1.58 kB
assets/CreateWorkspaceDialogContent-CtPiuBpu.js (removed) 5.19 kB 🟢 -5.19 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/ChangeMemberRoleDialogContent-DcndEtdU.js (removed) 5.04 kB 🟢 -5.04 kB 🟢 -1.67 kB 🟢 -1.46 kB
assets/ChangeMemberRoleDialogContent-rJvpWb3b.js (new) 5.04 kB 🔴 +5.04 kB 🔴 +1.67 kB 🔴 +1.46 kB
assets/missingModelDownload-JTXXWlk0.js (removed) 5.03 kB 🟢 -5.03 kB 🟢 -1.95 kB 🟢 -1.7 kB
assets/missingModelDownload-u_BZsxYd.js (new) 5.03 kB 🔴 +5.03 kB 🔴 +1.95 kB 🔴 +1.7 kB
assets/EditWorkspaceDialogContent-BQWty8SP.js (removed) 5 kB 🟢 -5 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/EditWorkspaceDialogContent-CNSd66L5.js (new) 5 kB 🔴 +5 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/WidgetTextarea-CHTVv_jm.js (removed) 4.86 kB 🟢 -4.86 kB 🟢 -1.9 kB 🟢 -1.66 kB
assets/WidgetTextarea-DqRoHYB8.js (new) 4.86 kB 🔴 +4.86 kB 🔴 +1.9 kB 🔴 +1.66 kB
assets/saveMesh-B_35_iF_.js (new) 4.81 kB 🔴 +4.81 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/saveMesh-C5htNjTv.js (removed) 4.81 kB 🟢 -4.81 kB 🟢 -1.55 kB 🟢 -1.37 kB
assets/WorkspacePanelContent-BiPJL2rH.js (removed) 4.78 kB 🟢 -4.78 kB 🟢 -1.63 kB 🟢 -1.43 kB
assets/WorkspacePanelContent-CaY4hcD9.js (new) 4.78 kB 🔴 +4.78 kB 🔴 +1.63 kB 🔴 +1.43 kB
assets/InviteMemberDialogContent-BP2qHycT.js (removed) 4.75 kB 🟢 -4.75 kB 🟢 -1.62 kB 🟢 -1.4 kB
assets/InviteMemberDialogContent-CdFzMcKl.js (new) 4.75 kB 🔴 +4.75 kB 🔴 +1.61 kB 🔴 +1.4 kB
assets/ValueControlPopover-CdMowBDW.js (new) 4.54 kB 🔴 +4.54 kB 🔴 +1.58 kB 🔴 +1.41 kB
assets/ValueControlPopover-DtCMsOtq.js (removed) 4.54 kB 🟢 -4.54 kB 🟢 -1.58 kB 🟢 -1.42 kB
assets/DeleteWorkspaceDialogContent-C2GwQYNv.js (new) 3.91 kB 🔴 +3.91 kB 🔴 +1.47 kB 🔴 +1.26 kB
assets/DeleteWorkspaceDialogContent-C3LAZkyb.js (removed) 3.91 kB 🟢 -3.91 kB 🟢 -1.48 kB 🟢 -1.26 kB
assets/LeaveWorkspaceDialogContent-b9HthEhL.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.42 kB 🟢 -1.21 kB
assets/LeaveWorkspaceDialogContent-DvQrop6e.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.41 kB 🔴 +1.21 kB
assets/RemoveMemberDialogContent-DRF7LToy.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.37 kB 🟢 -1.18 kB
assets/RemoveMemberDialogContent-DwpiqGZI.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.37 kB 🔴 +1.18 kB
assets/RevokeInviteDialogContent-CIVsjh9Q.js (removed) 3.62 kB 🟢 -3.62 kB 🟢 -1.38 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-zTzQr_cS.js (new) 3.62 kB 🔴 +3.62 kB 🔴 +1.38 kB 🔴 +1.2 kB
assets/InviteMemberUpsellDialogContent-BfoiGQTw.js (removed) 3.51 kB 🟢 -3.51 kB 🟢 -1.26 kB 🟢 -1.1 kB
assets/InviteMemberUpsellDialogContent-D1QpS2wm.js (new) 3.51 kB 🔴 +3.51 kB 🔴 +1.26 kB 🔴 +1.1 kB
assets/workspaceCheckoutTelemetry-B2dyNMfR.js (removed) 3.46 kB 🟢 -3.46 kB 🟢 -1.55 kB 🟢 -1.35 kB
assets/workspaceCheckoutTelemetry-W0gEB3SI.js (new) 3.46 kB 🔴 +3.46 kB 🔴 +1.56 kB 🔴 +1.35 kB
assets/Media3DTop-D3X72bmm.js (removed) 3.26 kB 🟢 -3.26 kB 🟢 -1.29 kB 🟢 -1.13 kB
assets/Media3DTop-DKL8qySa.js (new) 3.26 kB 🔴 +3.26 kB 🔴 +1.29 kB 🔴 +1.13 kB
assets/GlobalToast-C7ouHjvz.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.25 kB 🔴 +1.07 kB
assets/GlobalToast-CWYMm80S.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.25 kB 🟢 -1.11 kB
assets/load3dAdvanced-BX7Q9n29.js (new) 2.87 kB 🔴 +2.87 kB 🔴 +1.13 kB 🔴 +978 B
assets/load3dAdvanced-t8v9pYVa.js (removed) 2.87 kB 🟢 -2.87 kB 🟢 -1.13 kB 🟢 -976 B
assets/SubscribeToRun-C57sFxjE.js (removed) 2.45 kB 🟢 -2.45 kB 🟢 -1.06 kB 🟢 -942 B
assets/SubscribeToRun-DNnYSHyF.js (new) 2.45 kB 🔴 +2.45 kB 🔴 +1.06 kB 🔴 +925 B
assets/MediaAudioTop-BWM2Hdmw.js (removed) 1.67 kB 🟢 -1.67 kB 🟢 -837 B 🟢 -694 B
assets/MediaAudioTop-C47oppzl.js (new) 1.67 kB 🔴 +1.67 kB 🔴 +834 B 🔴 +694 B
assets/CloudRunButtonWrapper-B2yVhlk9.js (new) 1.11 kB 🔴 +1.11 kB 🔴 +547 B 🔴 +506 B
assets/CloudRunButtonWrapper-DVqs74yb.js (removed) 1.11 kB 🟢 -1.11 kB 🟢 -548 B 🟢 -485 B
assets/cloudSessionCookie-BRXT7_tI.js (new) 989 B 🔴 +989 B 🔴 +465 B 🔴 +400 B
assets/cloudSessionCookie-Chug2AdZ.js (removed) 989 B 🟢 -989 B 🟢 -461 B 🟢 -416 B
assets/cloudBadges-BIOUH_Zd.js (new) 971 B 🔴 +971 B 🔴 +547 B 🔴 +495 B
assets/cloudBadges-BRrn1bf2.js (removed) 971 B 🟢 -971 B 🟢 -546 B 🟢 -461 B
assets/Load3DAdvanced-CQJL1mi2.js (removed) 813 B 🟢 -813 B 🟢 -454 B 🟢 -408 B
assets/Load3DAdvanced-DdkCQ0ib.js (new) 813 B 🔴 +813 B 🔴 +453 B 🔴 +406 B
assets/nightlyBadges-BL-IfMEn.js (removed) 462 B 🟢 -462 B 🟢 -303 B 🟢 -250 B
assets/nightlyBadges-U3VOiAfd.js (new) 462 B 🔴 +462 B 🔴 +306 B 🔴 +256 B
assets/missingModelDownload-DCtiqyS8.js (new) 228 B 🔴 +228 B 🔴 +149 B 🔴 +128 B
assets/missingModelDownload-w7Ndz1pb.js (removed) 228 B 🟢 -228 B 🟢 -149 B 🟢 -128 B
assets/SubscriptionPanelContentWorkspace-BsrU_HY7.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -94 B
assets/SubscriptionPanelContentWorkspace-sY5LCcAh.js (new) 179 B 🔴 +179 B 🔴 +116 B 🔴 +92 B
assets/Load3dViewerContent-C2Yb3VWz.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +95 B
assets/Load3dViewerContent-DePXFGu0.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -91 B
assets/Load3DAdvanced-j_bSrlQL.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -88 B
assets/Load3DAdvanced-nyUN9fQe.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +87 B
assets/WidgetLegacy-BJhu6ybw.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -103 B
assets/WidgetLegacy-mR_Rmx2W.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +102 B
assets/workflowDraftStoreV2-BKoEd2IT.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -110 B
assets/workflowDraftStoreV2-RzHUL_NE.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +109 B
assets/Load3D-BE0Q8C7G.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +82 B
assets/Load3D-C7cQgVda.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -80 B
assets/changeTracker-Dll_NdtS.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -82 B
assets/changeTracker-iEG9C_cq.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +86 B

Status: 68 added / 68 removed / 207 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.3 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.3 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 71.8 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.1 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.8 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.4 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.5 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.4 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.6 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.1 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 45.0 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 139ms TBT · 94.8 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.4 MB heap
vue-large-graph-idle: · 56.3 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 163.4 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 231ms TBT · 159.7 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.6 MB heap

⚠️ 10 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 343ms 516ms +51% ⚠️ z=3.9
canvas-mouse-sweep: task duration 600ms 1019ms +70% ⚠️ z=2.6
canvas-zoom-sweep: task duration 273ms 402ms +47% ⚠️ z=3.2
large-graph-idle: task duration 487ms 735ms +51% ⚠️ z=3.6
large-graph-pan: task duration 884ms 1385ms +57% ⚠️ z=7.0
large-graph-pan: script duration 273ms 470ms +72% ⚠️ z=3.1
minimap-idle: task duration 472ms 759ms +61% ⚠️ z=4.9
minimap-idle: script duration 59ms 125ms +114% ⚠️ z=2.8
subgraph-dom-widget-clipping: task duration 279ms 415ms +49% ⚠️ z=2.0
subgraph-idle: task duration 328ms 497ms +52% ⚠️ z=4.0
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 6ms 10ms +83% z=-0.7
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 10 10 -5% z=-2.9
canvas-idle: task duration 343ms 516ms +51% ⚠️ z=3.9
canvas-idle: script duration 13ms 23ms +77% z=-1.1
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 68.3 MB 68.3 MB -0%
canvas-idle: DOM nodes 20 19 -5% z=-2.8
canvas-idle: event listeners 6 4 -33% z=-1.6
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.9
canvas-mouse-sweep: p95 frame time 17ms 17ms +1%
canvas-mouse-sweep: layout duration 2ms 4ms +56% z=-0.1
canvas-mouse-sweep: style recalc duration 21ms 42ms +102% z=-0.1
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 72 75 +4% z=-1.6
canvas-mouse-sweep: task duration 600ms 1019ms +70% ⚠️ z=2.6
canvas-mouse-sweep: script duration 71ms 137ms +91% z=0.2
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 49.9 MB 50.3 MB +1%
canvas-mouse-sweep: DOM nodes -271 -275 +1% z=-130.2
canvas-mouse-sweep: event listeners -146 -148 +1% z=-37.5
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms -0%
canvas-zoom-sweep: layout duration 1ms 1ms +11% z=-0.5
canvas-zoom-sweep: style recalc duration 11ms 18ms +61% z=-0.5
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 32 32 -2% z=0.5
canvas-zoom-sweep: task duration 273ms 402ms +47% ⚠️ z=3.2
canvas-zoom-sweep: script duration 14ms 22ms +56% z=-1.7
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 71.8 MB 71.8 MB +0%
canvas-zoom-sweep: DOM nodes 79 78 -1% z=-1.6
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 6ms 8ms +28% z=-2.9
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 13 11 -19% z=-5.2
dom-widget-clipping: task duration 267ms 391ms +46% z=1.6
dom-widget-clipping: script duration 36ms 64ms +81% z=-1.1
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 53.0 MB 53.1 MB +0%
dom-widget-clipping: DOM nodes 22 17 -23% z=-3.6
dom-widget-clipping: event listeners 2 2 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms -0% z=-0.6
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 6ms 7ms +29% z=-4.6
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 8 -25% z=-13.1
large-graph-idle: task duration 487ms 735ms +51% ⚠️ z=3.6
large-graph-idle: script duration 62ms 121ms +96% z=1.8
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 64.3 MB 63.8 MB -1%
large-graph-idle: DOM nodes -273 -274 +0% z=-330.5
large-graph-idle: event listeners -142 -143 +1% z=-27.7
large-graph-pan: avg frame time 17ms 17ms -0% z=-0.8
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 12ms 15ms +19% z=-3.2
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 -1% z=-1.7
large-graph-pan: task duration 884ms 1385ms +57% ⚠️ z=7.0
large-graph-pan: script duration 273ms 470ms +72% ⚠️ z=3.1
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 61.2 MB 60.4 MB -1%
large-graph-pan: DOM nodes -275 -278 +1% z=-179.7
large-graph-pan: event listeners -144 -143 -1% z=-178.6
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms -1%
large-graph-zoom: layout duration 8ms 7ms -2%
large-graph-zoom: style recalc duration 14ms 15ms +4%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 67 65 -4%
large-graph-zoom: task duration 1062ms 1623ms +53%
large-graph-zoom: script duration 332ms 561ms +69%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 51.6 MB 63.5 MB +23%
large-graph-zoom: DOM nodes 16 -280 -1850%
large-graph-zoom: event listeners -146 -148 +1%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.4
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 5ms 10ms +91% z=0.3
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 8 -20% z=-2.3
minimap-idle: task duration 472ms 759ms +61% ⚠️ z=4.9
minimap-idle: script duration 59ms 125ms +114% ⚠️ z=2.8
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 64.4 MB 64.4 MB -0%
minimap-idle: DOM nodes -274 -278 +1% z=-217.2
minimap-idle: event listeners -142 -145 +2% z=-226.5
subgraph-dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.4
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 7ms 12ms +60% z=-1.2
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 48 48 -1% z=-0.8
subgraph-dom-widget-clipping: task duration 279ms 415ms +49% ⚠️ z=2.0
subgraph-dom-widget-clipping: script duration 77ms 120ms +57% z=-1.2
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 53.3 MB 53.6 MB +1%
subgraph-dom-widget-clipping: DOM nodes 22 21 -5% z=-1.1
subgraph-dom-widget-clipping: event listeners 8 8 +0% z=-1.4
subgraph-idle: avg frame time 17ms 17ms -0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms -1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 6ms 9ms +47% z=-1.3
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 12 10 -21% z=-2.1
subgraph-idle: task duration 328ms 497ms +52% ⚠️ z=4.0
subgraph-idle: script duration 11ms 18ms +68% z=-0.9
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 68.5 MB 68.1 MB -1%
subgraph-idle: DOM nodes 24 19 -21% z=-1.9
subgraph-idle: event listeners 6 4 -33% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.8
subgraph-mouse-sweep: p95 frame time 17ms 17ms -0%
subgraph-mouse-sweep: layout duration 3ms 4ms +55% z=-0.7
subgraph-mouse-sweep: style recalc duration 23ms 40ms +78% z=-0.7
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 77 76 -2% z=-2.4
subgraph-mouse-sweep: task duration 518ms 866ms +67% z=1.4
subgraph-mouse-sweep: script duration 56ms 101ms +81% z=0.1
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 59.5 MB 45.0 MB -24%
subgraph-mouse-sweep: DOM nodes 65 -276 -524% z=-153.3
subgraph-mouse-sweep: event listeners 4 -148 -3800% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms -1%
subgraph-transition-enter: layout duration 8ms 13ms +68%
subgraph-transition-enter: style recalc duration 22ms 32ms +50%
subgraph-transition-enter: layout count 15 14 -7%
subgraph-transition-enter: style recalc count 19 18 -5%
subgraph-transition-enter: task duration 620ms 1022ms +65%
subgraph-transition-enter: script duration 20ms 39ms +97%
subgraph-transition-enter: TBT 82ms 139ms +70%
subgraph-transition-enter: heap used 92.7 MB 94.8 MB +2%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2369 2371 +0%
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms +1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 37ms 37ms +0%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 249 249 +0%
viewport-pan-sweep: task duration 3124ms 4716ms +51%
viewport-pan-sweep: script duration 928ms 1433ms +54%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 63.5 MB 66.4 MB +4%
viewport-pan-sweep: DOM nodes -273 -276 +1%
viewport-pan-sweep: event listeners -128 -126 -2%
vue-large-graph-idle: avg frame time 17ms 18ms +7%
vue-large-graph-idle: p95 frame time 17ms 17ms -0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 11145ms 17384ms +56%
vue-large-graph-idle: script duration 387ms 589ms +52%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 165.4 MB 163.4 MB -1%
vue-large-graph-idle: DOM nodes -8312 -8312 +0%
vue-large-graph-idle: event listeners -16391 -16387 -0%
vue-large-graph-pan: avg frame time 17ms 18ms +3%
vue-large-graph-pan: p95 frame time 17ms 17ms -0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 15ms 19ms +31%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 66 146 +121%
vue-large-graph-pan: task duration 13525ms 21065ms +56%
vue-large-graph-pan: script duration 646ms 913ms +41%
vue-large-graph-pan: TBT 33ms 231ms +600%
vue-large-graph-pan: heap used 161.0 MB 159.7 MB -1%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16389 -16383 -0%
workflow-execution: avg frame time 17ms 17ms -0% z=0.1
workflow-execution: p95 frame time 17ms 17ms -1%
workflow-execution: layout duration 1ms 1ms -22% z=-4.6
workflow-execution: style recalc duration 17ms 17ms +5% z=-3.1
workflow-execution: layout count 3 3 -17% z=-4.5
workflow-execution: style recalc count 15 11 -27% z=-3.3
workflow-execution: task duration 97ms 96ms -1% z=-2.5
workflow-execution: script duration 8ms 9ms +19% z=-6.7
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 48.7 MB 57.6 MB +18%
workflow-execution: DOM nodes 123 127 +3% z=-4.8
workflow-execution: event listeners 67 41 -39% z=-2.5
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-07-29T09:56:18.271Z",
  "gitSha": "8bad187d17e8d22ff88d999a5e9b445dca6b2776",
  "branch": "matt/be-5046-assert-rum-reporter",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2054.4009999999844,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 10.007,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 529.809,
      "heapDeltaBytes": 3723340,
      "heapUsedBytes": 71624252,
      "domNodes": 18,
      "jsHeapTotalBytes": 20316160,
      "scriptDurationMs": 23.343999999999998,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-idle",
      "durationMs": 2038.520999999946,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.33,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 501.2340000000001,
      "heapDeltaBytes": 3652560,
      "heapUsedBytes": 71552736,
      "domNodes": 20,
      "jsHeapTotalBytes": 20316160,
      "scriptDurationMs": 22.21,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2103.6920000000237,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 45.962,
      "layouts": 12,
      "layoutDurationMs": 3.842,
      "taskDurationMs": 1109.192,
      "heapDeltaBytes": -16028460,
      "heapUsedBytes": 51794236,
      "domNodes": -276,
      "jsHeapTotalBytes": 20967424,
      "scriptDurationMs": 145.581,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1846.8329999999469,
      "styleRecalcs": 73,
      "styleRecalcDurationMs": 38.802,
      "layouts": 12,
      "layoutDurationMs": 3.326,
      "taskDurationMs": 928.0110000000001,
      "heapDeltaBytes": -14183400,
      "heapUsedBytes": 53753228,
      "domNodes": -273,
      "jsHeapTotalBytes": 21491712,
      "scriptDurationMs": 127.754,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1740.0470000000041,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 18.767,
      "layouts": 6,
      "layoutDurationMs": 0.5530000000000002,
      "taskDurationMs": 405.675,
      "heapDeltaBytes": 7214184,
      "heapUsedBytes": 75204244,
      "domNodes": 78,
      "jsHeapTotalBytes": 20054016,
      "scriptDurationMs": 21.776999999999997,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1754.9679999999626,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 17.931,
      "layouts": 6,
      "layoutDurationMs": 0.687,
      "taskDurationMs": 398.025,
      "heapDeltaBytes": 7163980,
      "heapUsedBytes": 75305228,
      "domNodes": 78,
      "jsHeapTotalBytes": 20578304,
      "scriptDurationMs": 22.294,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 641.8570000000159,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.068000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 407.484,
      "heapDeltaBytes": -12264516,
      "heapUsedBytes": 55614960,
      "domNodes": 18,
      "jsHeapTotalBytes": 21364736,
      "scriptDurationMs": 68.59499999999998,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 588.7189999999691,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.077999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 375.21099999999996,
      "heapDeltaBytes": -12500048,
      "heapUsedBytes": 55649152,
      "domNodes": 16,
      "jsHeapTotalBytes": 21889024,
      "scriptDurationMs": 60.172000000000004,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2042.6089999999704,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.118,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 743.136,
      "heapDeltaBytes": 6616692,
      "heapUsedBytes": 65609716,
      "domNodes": -275,
      "jsHeapTotalBytes": 4784128,
      "scriptDurationMs": 123.31800000000001,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2026.9049999999424,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 6.670000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 726.2600000000001,
      "heapDeltaBytes": 6871392,
      "heapUsedBytes": 68157428,
      "domNodes": -273,
      "jsHeapTotalBytes": 4521984,
      "scriptDurationMs": 118.48400000000001,
      "eventListeners": -142,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2251.6769999999724,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 14.415000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1375.694,
      "heapDeltaBytes": 4517704,
      "heapUsedBytes": 64197292,
      "domNodes": -277,
      "jsHeapTotalBytes": 4464640,
      "scriptDurationMs": 455.414,
      "eventListeners": -142,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2255.941000000007,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 15.027000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1394.148,
      "heapDeltaBytes": 2276944,
      "heapUsedBytes": 62410328,
      "domNodes": -278,
      "jsHeapTotalBytes": 5251072,
      "scriptDurationMs": 484.60800000000006,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3361.383999999987,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 15.200000000000001,
      "layouts": 60,
      "layoutDurationMs": 7.494000000000001,
      "taskDurationMs": 1647.6589999999999,
      "heapDeltaBytes": 6658072,
      "heapUsedBytes": 68112196,
      "domNodes": -280,
      "jsHeapTotalBytes": 8978432,
      "scriptDurationMs": 567.561,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3296.3479999999663,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 14.719,
      "layouts": 60,
      "layoutDurationMs": 7.476999999999999,
      "taskDurationMs": 1598.5149999999999,
      "heapDeltaBytes": 2959916,
      "heapUsedBytes": 65155036,
      "domNodes": -280,
      "jsHeapTotalBytes": 7667712,
      "scriptDurationMs": 555.4,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2030.149999999992,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 9.153999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 760.086,
      "heapDeltaBytes": 6418960,
      "heapUsedBytes": 66836592,
      "domNodes": -279,
      "jsHeapTotalBytes": 3997696,
      "scriptDurationMs": 123.43799999999999,
      "eventListeners": -146,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2074.8559999999543,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 10.421,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 757.5450000000001,
      "heapDeltaBytes": 7439576,
      "heapUsedBytes": 68171124,
      "domNodes": -277,
      "jsHeapTotalBytes": 4784128,
      "scriptDurationMs": 127.51200000000001,
      "eventListeners": -144,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 620.4809999999839,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 11.986,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 413.213,
      "heapDeltaBytes": -11501296,
      "heapUsedBytes": 56539460,
      "domNodes": 22,
      "jsHeapTotalBytes": 21889024,
      "scriptDurationMs": 119.348,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 630.1220000000285,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.118999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 417.067,
      "heapDeltaBytes": -12115060,
      "heapUsedBytes": 55866996,
      "domNodes": 20,
      "jsHeapTotalBytes": 22151168,
      "scriptDurationMs": 121.362,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2007.758000000024,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.39,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 502.333,
      "heapDeltaBytes": 3517336,
      "heapUsedBytes": 71400540,
      "domNodes": 20,
      "jsHeapTotalBytes": 20840448,
      "scriptDurationMs": 18.759999999999998,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2001.846999999998,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.402999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 490.84200000000004,
      "heapDeltaBytes": 3419588,
      "heapUsedBytes": 71491768,
      "domNodes": 18,
      "jsHeapTotalBytes": 20840448,
      "scriptDurationMs": 16.746000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1733.9999999999804,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 40.063,
      "layouts": 16,
      "layoutDurationMs": 4.412,
      "taskDurationMs": 876.976,
      "heapDeltaBytes": -21103188,
      "heapUsedBytes": 47041220,
      "domNodes": -276,
      "jsHeapTotalBytes": 20967424,
      "scriptDurationMs": 102.32999999999998,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1741.5070000000696,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 40.37299999999999,
      "layouts": 16,
      "layoutDurationMs": 4.547,
      "taskDurationMs": 854.8260000000001,
      "heapDeltaBytes": -20920208,
      "heapUsedBytes": 47358244,
      "domNodes": -275,
      "jsHeapTotalBytes": 20967424,
      "scriptDurationMs": 100.37,
      "eventListeners": -148,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1436.095000000023,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 32.367999999999995,
      "layouts": 14,
      "layoutDurationMs": 13.269000000000004,
      "taskDurationMs": 1021.5970000000001,
      "heapDeltaBytes": 31052712,
      "heapUsedBytes": 99420352,
      "domNodes": 13673,
      "jsHeapTotalBytes": 14942208,
      "scriptDurationMs": 39.23299999999999,
      "eventListeners": 2371,
      "totalBlockingTimeMs": 139,
      "frameDurationMs": 16.666666666666696,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8399.347999999974,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 37.748999999999995,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4769.862,
      "heapDeltaBytes": 9840444,
      "heapUsedBytes": 69538392,
      "domNodes": -276,
      "jsHeapTotalBytes": 7319552,
      "scriptDurationMs": 1444.326,
      "eventListeners": -126,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8378.544000000034,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 36.693000000000005,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4662.714,
      "heapDeltaBytes": 10254468,
      "heapUsedBytes": 69645752,
      "domNodes": -275,
      "jsHeapTotalBytes": 6795264,
      "scriptDurationMs": 1421.1589999999999,
      "eventListeners": -126,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17494.242999999984,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17474.607000000004,
      "heapDeltaBytes": -43797364,
      "heapUsedBytes": 165753768,
      "domNodes": -8312,
      "jsHeapTotalBytes": -15405056,
      "scriptDurationMs": 592.801,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17317.69200000008,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17292.73,
      "heapDeltaBytes": -28141324,
      "heapUsedBytes": 176818972,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14880768,
      "scriptDurationMs": 585.0379999999999,
      "eventListeners": -16389,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 21261.398999999983,
      "styleRecalcs": 149,
      "styleRecalcDurationMs": 19.994999999999983,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 21192.696,
      "heapDeltaBytes": -52598944,
      "heapUsedBytes": 155886232,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14356480,
      "scriptDurationMs": 932.0079999999999,
      "eventListeners": -16383,
      "totalBlockingTimeMs": 293,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 21009.824000000095,
      "styleRecalcs": 143,
      "styleRecalcDurationMs": 18.00400000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20938.137000000002,
      "heapDeltaBytes": -21561200,
      "heapUsedBytes": 178955500,
      "domNodes": -8312,
      "jsHeapTotalBytes": -14962688,
      "scriptDurationMs": 893.2719999999998,
      "eventListeners": -16383,
      "totalBlockingTimeMs": 169,
      "frameDurationMs": 17.773333333333238,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 115.51199999996697,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 17.173000000000002,
      "layouts": 3,
      "layoutDurationMs": 1.449,
      "taskDurationMs": 87.62899999999999,
      "heapDeltaBytes": 3099704,
      "heapUsedBytes": 70169600,
      "domNodes": 134,
      "jsHeapTotalBytes": 3407872,
      "scriptDurationMs": 8.929000000000002,
      "eventListeners": 17,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 455.7320000000118,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 17.777,
      "layouts": 2,
      "layoutDurationMs": 0.30600000000000005,
      "taskDurationMs": 105.033,
      "heapDeltaBytes": -16300212,
      "heapUsedBytes": 50650124,
      "domNodes": 119,
      "jsHeapTotalBytes": 7733248,
      "scriptDurationMs": 9.262,
      "eventListeners": 65,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    }
  ]
}

@github-actions github-actions 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.

🔍 Cursor Review — Consolidated panel

Triggered by @mattmillerai.

Found 3 finding(s).

Severity Count
🟡 Medium 2
🟢 Low 1

Panel: 8/8 reviewers contributed findings.

Comment thread src/platform/telemetry/assertRumReporter.ts
Comment thread src/platform/telemetry/assertRumReporter.ts Outdated
Comment thread src/platform/telemetry/assertRumReporter.ts
@codecov

codecov Bot commented Jul 29, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 88.23529% with 2 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/main.ts 0.00% 2 Missing ⚠️
@@            Coverage Diff             @@
##             main   #14254      +/-   ##
==========================================
- Coverage   80.11%   79.69%   -0.42%     
==========================================
  Files        1755     1755              
  Lines      112815   110319    -2496     
  Branches    38321    36836    -1485     
==========================================
- Hits        90382    87923    -2459     
+ Misses      21915    21876      -39     
- Partials      518      520       +2     
Flag Coverage Δ
unit 69.40% <88.23%> (-0.02%) ⬇️

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

Files with missing lines Coverage Δ
src/base/assert.ts 100.00% <ø> (ø)
src/platform/telemetry/assertRumReporter.ts 100.00% <100.00%> (ø)
src/scripts/changeTracker.ts 86.49% <100.00%> (ø)
src/main.ts 38.09% <0.00%> (-1.91%) ⬇️

... and 34 files with indirect coverage changes

🚀 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.

Assert messages are now shipped to Datadog RUM on cloud builds. The only
production assert caller interpolated the workflow path into its message,
so every reported failure carried user content to an external vendor.
Move the path into the local dedup key only and document the constraint
on assert() itself.

Also release the message and the cached SDK import when a send fails: the
rejected import promise was cached forever and the message had already
consumed a cap slot, so one transient failure permanently disabled
reporting for the session.
@christian-byrne

Copy link
Copy Markdown
Contributor

Superseding this with #15189 — flagging the details since it renames a file this branch owns.

Context: #15063 review raised that bootstrapStore was calling datadogRum and captureException directly, and that we shouldn't leak vendor SDKs through feature code. Fixing that meant adding a generic reportError to TelemetryRegistry, which turns out to be the same thing this PR needs — so assert reporting now goes through the registry rather than importing the RUM SDK itself.

What carried over unchanged:

  • dedup by exact message and the 20-per-session cap
  • the Error built at the assert call site so the stack points at the invariant
  • the assert() doc guardrail about never interpolating user data into message

What changed:

  • assertRumReporter.tsassertFailureReporter.ts, since it is no longer RUM-specific. Routing through the registry means Sentry sees these too, not just Datadog.
  • The lazy import('@datadog/browser-rum') is gone. It is no longer needed: initTelemetry() only constructs DatadogRumTelemetryProvider on cloud builds, so the SDK stays out of other bundles anyway.
  • The isDesktopSentry.captureMessage branch in setAssertReporter is left exactly as-is. The registry is cloud-only, so folding desktop into it would have silently dropped that reporting — worth calling out since it was the one non-obvious trap here.

The LGraph.add invariant from #14233 is not included; that is still yours and independent of the reporting plumbing.

Closing this as superseded, but happy to reopen if you'd rather land the reporter your way and have #15189 rebase onto it instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

agent-coded Opened by the agent-work code loop cursor-review Trigger multi-model Cursor agent review on this PR size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants