Skip to content

fix(telemetry): route every error report through one reporter that reaches both sinks - #15346

Merged
christian-byrne merged 2 commits into
mainfrom
fix/unified-report-error
Aug 18, 2026
Merged

fix(telemetry): route every error report through one reporter that reaches both sinks#15346
christian-byrne merged 2 commits into
mainfrom
fix/unified-report-error

Conversation

@christian-byrne

Copy link
Copy Markdown
Contributor

Summary

captureException reaches Sentry only. That is how workspace_auth_gate_initialization_failure — one of the two error_type values IR-105 is tracked by — fired in production while reading as zero on every Datadog dashboard. Only bootstrap_auth_wait_timeout dual-wrote, and it did so by hand at the call site.

Adds reportError(cause, { errorType, tags, context, level }) and migrates all seven call sites onto it. error_type lands as a Sentry tag and a RUM context field under the same name, so one query works against either console.

Two further ways a report could go nowhere

Build-time flag defeated the runtime DSN. Sentry.init({ enabled: __SENTRY_ENABLED__ }) baked the flag from the build machine's SENTRY_DSN, but cloud resolves its DSN at runtime from remote config (sentry_dsn). A cloud build without the env var left every capture in the app inert no matter how valid the runtime DSN turned out to be. enabled now derives from the resolved DSN; the dead define is removed rather than left to rot.

Early-boot reports were dropped. Datadog RUM initializes behind initDatadogRum()'s fire-and-forget dynamic import in bootstrap.ts while Sentry initializes in main.ts, so a failure raised before either sink existed went nowhere — precisely the failures that leave a user on the splash screen. Reports raised before a sink is live are now buffered (bounded at 25) and flushed once one comes up.

reportError never throws: a failing error reporter must not become a second failure.

Verification

  • src/platform/telemetry/reportError.test.ts — 8 cases: both-sink fan-out, degraded single-sink, buffer-then-flush, no double-replay, bounded buffer, non-Error normalization, undefined tag stripping, sink-throws containment.
  • Existing suites migrated off the @sentry/vue mock onto the reportError mock: bootstrapStore, WorkspaceAuthGate, useWorkspaceBilling.
  • pnpm vitest run src/platform/telemetry/ src/platform/cloud/onboarding/auth.test.ts — 391 passed.
  • pnpm lint, pnpm typecheck, pnpm knip clean.

Regression risk

Low-to-moderate. No behavior change at any call site beyond reaching a second sink. The enabled change means Sentry now activates in any non-dev build with a resolvable DSN — which is the intent, but it is the one line worth a close look.

Follow-ups (not in this PR)

  • Boot chunks that 404 never execute JS at all, so no in-app reporter can see them. Needs an inline sentinel in index.html.
  • The / -> /cloud/login -> /cloud/user-check redirect loop emits neither error_type because auth succeeds on every lap. Needs its own instrumentation.

@christian-byrne
christian-byrne requested a review from a team August 17, 2026 01:21
@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Aug 17, 2026
@coderabbitai

coderabbitai Bot commented Aug 17, 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 current included review allowance is based on your included PR review attempts over the past 7 days.

Next review available in: 24 minutes

Limit details: You’ve used all 2 included reviews currently available. Your 84 included PR review attempts over the past 7 days set your current allowance at 2 reviews per hour.

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 within each organization.

For paid Pro and Pro+ reviews, CodeRabbit uses a developer's included PR review attempts over the past 7 days to set the current hourly allowance. At typical activity levels, the full plan allowance applies. Higher sustained activity can lower the allowance until earlier attempts leave the 7-day window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 28905c60-8911-47c6-8ae9-88e90de203c8

📥 Commits

Reviewing files that changed from the base of the PR and between a8483a8 and a3be8f2.

📒 Files selected for processing (16)
  • global.d.ts
  • scripts/vite-define-shim.ts
  • src/App.vue
  • src/bootstrap.ts
  • src/main.ts
  • src/platform/cloud/onboarding/auth.ts
  • src/platform/telemetry/reportError.test.ts
  • src/platform/telemetry/reportError.ts
  • src/platform/workspace/auth/WorkspaceAuthGate.test.ts
  • src/platform/workspace/auth/WorkspaceAuthGate.vue
  • src/platform/workspace/composables/useWorkspaceBilling.test.ts
  • src/platform/workspace/composables/useWorkspaceBilling.ts
  • src/stores/bootstrapStore.test.ts
  • src/stores/bootstrapStore.ts
  • vite.config.mts
  • vitest.setup.ts

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

@github-actions

github-actions Bot commented Aug 17, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 08/18/2026, 08:43:27 PM UTC

Links

🎭 Playwright: ✅ 1828 passed, 0 failed · 3 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1807 / ❌ 0 / ⚠️ 3 / ⏭️ 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.86 MB gzip 🔴 +1.43 kB

Details

Summary

  • Raw size: 37.4 MB baseline 37.4 MB — 🔴 +3.08 kB
  • Gzip: 8.86 MB baseline 8.85 MB — 🔴 +1.43 kB
  • Brotli: 6.19 MB baseline 6.19 MB — 🔴 +1.28 kB
  • Bundles: 438 current • 438 baseline • 147 added / 147 removed

Category Glance
Other 🔴 +4.25 kB (14.2 MB) · Utilities & Hooks 🟢 -1.27 kB (549 kB) · User & Accounts 🟢 -231 B (27.5 kB) · Vendor & Third-Party 🔴 +197 B (16.8 MB) · Data & Services 🔴 +102 B (3.52 MB) · Graph Workspace 🔴 +17 B (1.37 MB) · + 5 more

App Entry Points — 3.71 kB (baseline 3.71 kB) • 🔴 +2 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-DC6If3PA.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.86 kB 🔴 +1.6 kB
assets/index-Cvn_ijhp.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.85 kB 🟢 -1.61 kB

Status: 1 added / 1 removed

Graph Workspace — 1.37 MB (baseline 1.37 MB) • 🔴 +17 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-mPOkBj_3.js (new) 1.36 MB 🔴 +1.36 MB 🔴 +297 kB 🔴 +223 kB
assets/GraphView-C8UT3YTm.js (removed) 1.36 MB 🟢 -1.36 MB 🟢 -297 kB 🟢 -223 kB
assets/WidgetCompositor-CVQQ5PMr.js (removed) 8.17 kB 🟢 -8.17 kB 🟢 -2.76 kB 🟢 -2.48 kB
assets/WidgetCompositor-D1Li_V7z.js (new) 8.17 kB 🔴 +8.17 kB 🔴 +2.76 kB 🔴 +2.45 kB

Status: 2 added / 2 removed / 1 unchanged

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-D7r0AUpF.js (removed) 25 kB 🟢 -25 kB 🟢 -6.24 kB 🟢 -5.52 kB
assets/CloudSurveyView-DomTXXdv.js (new) 25 kB 🔴 +25 kB 🔴 +6.24 kB 🔴 +5.52 kB
assets/CloudLayoutView-9gsWQwiY.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +6.57 kB 🔴 +5.75 kB
assets/CloudLayoutView-DWdV3EkV.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -6.57 kB 🟢 -5.75 kB
assets/UserCheckView-DOOGB_tm.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.9 kB
assets/UserCheckView-xYcGEaMb.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.9 kB
assets/CloudLoginView-BnmOTugR.js (removed) 8.74 kB 🟢 -8.74 kB 🟢 -2.55 kB 🟢 -2.27 kB
assets/CloudLoginView-CazxyBOC.js (new) 8.74 kB 🔴 +8.74 kB 🔴 +2.55 kB 🔴 +2.27 kB
assets/useCloudAuthPage-DjiEebqL.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -2.51 kB 🟢 -2.19 kB
assets/useCloudAuthPage-gs6yTOAa.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +2.51 kB 🔴 +2.22 kB
assets/CloudSignupView-B9QFOHyV.js (removed) 6.96 kB 🟢 -6.96 kB 🟢 -2.28 kB 🟢 -2 kB
assets/CloudSignupView-DHOF1Sey.js (new) 6.96 kB 🔴 +6.96 kB 🔴 +2.28 kB 🔴 +2 kB
assets/WidgetTextPreview-BoJtM1ga.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.91 kB
assets/WidgetTextPreview-BTl9XGP2.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.9 kB
assets/CloudSubscriptionRedirectView-DkT-Ep6z.js (new) 6.05 kB 🔴 +6.05 kB 🔴 +2.25 kB 🔴 +1.96 kB
assets/CloudSubscriptionRedirectView-RmNPmjq3.js (removed) 6.05 kB 🟢 -6.05 kB 🟢 -2.25 kB 🟢 -1.96 kB
assets/UserSelectView-BURxB5zJ.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.96 kB 🔴 +1.71 kB
assets/UserSelectView-CtlsYMQf.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.96 kB 🟢 -1.71 kB
assets/CloudForgotPasswordView-BlgovUW_.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.72 kB 🟢 -1.49 kB
assets/CloudForgotPasswordView-CBgWE-L4.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.72 kB 🔴 +1.49 kB
assets/CloudAuthTimeoutView-d9uaGtGj.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.34 kB
assets/CloudAuthTimeoutView-DNPPSp5k.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.34 kB
assets/OAuthLayoutView-BDcInhH3.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +699 B 🔴 +586 B
assets/OAuthLayoutView-DoiCVwn9.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -700 B 🟢 -586 B
assets/WidgetTextPreview-3gGmXixr.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -89 B
assets/WidgetTextPreview-C6cXnq-0.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +89 B

Status: 13 added / 13 removed / 4 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-B-kXMV6P.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.95 kB 🔴 +8.8 kB
assets/KeybindingPanel-BHlMlAN8.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.94 kB 🟢 -8.8 kB
assets/SecretsPanel-DEF5XMjv.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.88 kB 🟢 -6.92 kB
assets/SecretsPanel-DJSjk3UI.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.88 kB 🔴 +6.9 kB
assets/CreditsPanel-CYJs6ncP.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.21 kB 🟢 -2.81 kB
assets/CreditsPanel-DMpHp1jp.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.21 kB 🔴 +2.81 kB
assets/AboutPanel-CbSYbygc.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.03 kB 🟢 -2.72 kB
assets/AboutPanel-DBVPjdLn.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.03 kB 🔴 +2.72 kB
assets/ExtensionPanel-BTTkbaNa.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.23 kB
assets/ExtensionPanel-DBkwMZLK.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.51 kB 🟢 -2.22 kB
assets/ServerConfigPanel-B1YtHs-9.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.94 kB 🔴 +1.72 kB
assets/ServerConfigPanel-CV8USC4l.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.94 kB 🟢 -1.72 kB
assets/UserPanel-JlAUnPGZ.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.78 kB 🟢 -1.54 kB
assets/UserPanel-uKQtDazX.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.54 kB
assets/refreshRemoteConfig-CkiEdxLs.js (new) 4.24 kB 🔴 +4.24 kB 🔴 +1.51 kB 🔴 +1.34 kB
assets/refreshRemoteConfig-OtypXxM5.js (removed) 4.24 kB 🟢 -4.24 kB 🟢 -1.51 kB 🟢 -1.34 kB
assets/cloudRemoteConfig-DpDPnyed.js (new) 951 B 🔴 +951 B 🔴 +512 B 🔴 +437 B
assets/cloudRemoteConfig-l7tGfExk.js (removed) 951 B 🟢 -951 B 🟢 -514 B 🟢 -422 B
assets/refreshRemoteConfig-B26MEmsu.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +94 B
assets/refreshRemoteConfig-rRnJSSJF.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -84 B

Status: 10 added / 10 removed / 16 unchanged

User & Accounts — 27.5 kB (baseline 27.7 kB) • 🟢 -231 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-3dVhpAcj.js (new) 13.3 kB 🔴 +13.3 kB 🔴 +4.52 kB 🔴 +3.94 kB
assets/SignUpForm-CMe3I2a6.js (removed) 13.3 kB 🟢 -13.3 kB 🟢 -4.52 kB 🟢 -3.93 kB
assets/auth-CYSege0c.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.28 kB 🟢 -1.1 kB
assets/auth-BbKNNhVW.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.21 kB 🔴 +1.01 kB
assets/UpdatePasswordContent-C8M5EBkz.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -839 B 🟢 -734 B
assets/UpdatePasswordContent-UF2PlV5a.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +841 B 🔴 +734 B
assets/authStore-c0x3tPnn.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -105 B
assets/authStore-Db0kPL-_.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +104 B
assets/workspaceAuthStore-DrrtBoQw.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -104 B
assets/workspaceAuthStore-DxLjIQIO.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +108 B
assets/auth-AgyF-vlZ.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -73 B
assets/auth-D0_6ezEQ.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +79 B

Status: 6 added / 6 removed / 5 unchanged

Editors & Dialogs — 125 kB (baseline 125 kB) • 🔴 +2 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-sB_CX8k9.js (new) 90.1 kB 🔴 +90.1 kB 🔴 +19.3 kB 🔴 +16.5 kB
assets/ComfyHubPublishDialog-mLaT13Zl.js (removed) 90.1 kB 🟢 -90.1 kB 🟢 -19.3 kB 🟢 -16.5 kB
assets/useShareDialog-53FG76Tn.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.7 kB 🔴 +5.04 kB
assets/useShareDialog-DaHWxJcE.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.69 kB 🟢 -5.04 kB
assets/feedbackDialog-ChOrPS6W.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.87 kB 🔴 +1.59 kB
assets/feedbackDialog-CqZrb2y2.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.87 kB 🟢 -1.59 kB
assets/useRangeEditor-CYqOH2d8.js (new) 3.29 kB 🔴 +3.29 kB 🔴 +1.14 kB 🔴 +1.03 kB
assets/useRangeEditor-DOUigDCt.js (removed) 3.29 kB 🟢 -3.29 kB 🟢 -1.14 kB 🟢 -1.03 kB
assets/useLayerEditor-B-fU_R2N.js (removed) 1.01 kB 🟢 -1.01 kB 🟢 -490 B 🟢 -409 B
assets/useLayerEditor-B8cylS1O.js (new) 1.01 kB 🔴 +1.01 kB 🔴 +492 B 🔴 +405 B
assets/ComfyHubPublishDialog-BDmOaRlS.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -89 B
assets/ComfyHubPublishDialog-C0Dpfm2u.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +89 B
assets/useSubscriptionDialog-b2X0V9Pz.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +95 B
assets/useSubscriptionDialog-CgXAzPGS.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -92 B

Status: 7 added / 7 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-837CT3Gl.js (new) 14.6 kB 🔴 +14.6 kB 🔴 +3.97 kB 🔴 +3.53 kB
assets/ComfyQueueButton-CrHhKX8M.js (removed) 14.6 kB 🟢 -14.6 kB 🟢 -3.97 kB 🟢 -3.53 kB
assets/useTerminalTabs-BroiAnj8.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.27 kB
assets/useTerminalTabs-DHm6EfWE.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.27 kB
assets/InviteMembersForm-BG0fqrSn.js (removed) 8.23 kB 🟢 -8.23 kB 🟢 -2.74 kB 🟢 -2.43 kB
assets/InviteMembersForm-Cx-Dc5tf.js (new) 8.23 kB 🔴 +8.23 kB 🔴 +2.74 kB 🔴 +2.44 kB
assets/SubscribeButton-oV6_9b_a.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -968 B 🟢 -848 B
assets/SubscribeButton-PP_U-eDP.js (new) 2.15 kB 🔴 +2.15 kB 🔴 +968 B 🔴 +848 B
assets/cloudFeedbackTopbarButton-LA0B6bXi.js (removed) 705 B 🟢 -705 B 🟢 -419 B 🟢 -360 B
assets/cloudFeedbackTopbarButton-rxVYKnda.js (new) 705 B 🔴 +705 B 🔴 +422 B 🔴 +360 B
assets/ComfyQueueButton-CS-QbcOc.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +90 B
assets/ComfyQueueButton-DuNYsfav.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -91 B

Status: 6 added / 6 removed / 8 unchanged

Data & Services — 3.52 MB (baseline 3.52 MB) • 🔴 +102 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-DBHLcnuV.js (new) 3.16 MB 🔴 +3.16 MB 🔴 +741 kB 🔴 +557 kB
assets/settingStore-Duy1r7ad.js (removed) 3.16 MB 🟢 -3.16 MB 🟢 -741 kB 🟢 -557 kB
assets/api-DXqiqHUX.js (new) 186 kB 🔴 +186 kB 🔴 +39.8 kB 🔴 +33.4 kB
assets/api-4oBbtrRO.js (removed) 186 kB 🟢 -186 kB 🟢 -39.8 kB 🟢 -33.4 kB
assets/load3dService-3gAPoHB0.js (new) 132 kB 🔴 +132 kB 🔴 +29.3 kB 🔴 +24.7 kB
assets/load3dService-Dg23pE1h.js (removed) 132 kB 🟢 -132 kB 🟢 -29.3 kB 🟢 -24.6 kB
assets/workflowShareService-BoNd-LNR.js (new) 16.5 kB 🔴 +16.5 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/workflowShareService-BplYc6Hq.js (removed) 16.5 kB 🟢 -16.5 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/keybindingService-DttrjwWG.js (removed) 6.89 kB 🟢 -6.89 kB 🟢 -1.73 kB 🟢 -1.49 kB
assets/keybindingService-kB6HRlzj.js (new) 6.89 kB 🔴 +6.89 kB 🔴 +1.73 kB 🔴 +1.49 kB
assets/releaseStore-BoDy403C.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.77 kB
assets/releaseStore-CpNeaVoP.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.77 kB
assets/systemStatsStore-CTs11xfP.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/systemStatsStore-NjWKE6kX.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/userStore-BL1ul2kM.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +899 B 🔴 +795 B
assets/userStore-Bq3rcsVn.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -896 B 🟢 -796 B
assets/audioService-BC2Ik1D1.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +832 B 🔴 +723 B
assets/audioService-u6_RExQO.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -829 B 🟢 -732 B
assets/dialogService-BfBQf2rF.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -82 B
assets/dialogService-DUsttzqY.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +81 B
assets/releaseStore-B2r39Og1.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -93 B
assets/releaseStore-ekRRQy2W.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +83 B
assets/settingStore-CmJI8Ox3.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -77 B
assets/settingStore-CZEBuWPZ.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +85 B
assets/assetsStore-CXSZtfIs.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +84 B
assets/assetsStore-tFnhTGga.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -84 B
assets/api-arsQJ6hZ.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-B0LVscqH.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 14 added / 14 removed / 3 unchanged

Utilities & Hooks — 549 kB (baseline 550 kB) • 🟢 -1.27 kB

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-C6s7YuiC.js (removed) 236 kB 🟢 -236 kB 🟢 -53.1 kB 🟢 -43.2 kB
assets/useConflictDetection-DAeewcJB.js (new) 236 kB 🔴 +236 kB 🔴 +53.1 kB 🔴 +43.2 kB
assets/useLayerEditorSession-Bz1Az15E.js (removed) 158 kB 🟢 -158 kB 🟢 -40.8 kB 🟢 -34.3 kB
assets/useLayerEditorSession-DvL5pOYX.js (new) 158 kB 🔴 +158 kB 🔴 +40.8 kB 🔴 +34.3 kB
assets/useLoad3d-7QQ6S_jW.js (removed) 25.8 kB 🟢 -25.8 kB 🟢 -5.8 kB 🟢 -5.14 kB
assets/useLoad3d-BqqLBwDS.js (new) 25.8 kB 🔴 +25.8 kB 🔴 +5.8 kB 🔴 +5.14 kB
assets/useLoad3dViewer-B-Sz807w.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.37 kB
assets/useLoad3dViewer-BSpLl_YF.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.36 kB
assets/useImageCrop-B_DWrLAO.js (removed) 14.9 kB 🟢 -14.9 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useImageCrop-DTF6Fue4.js (new) 14.9 kB 🔴 +14.9 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useDowngradeToPersonal-BOB3cX6i.js (new) 10.9 kB 🔴 +10.9 kB 🔴 +2.74 kB 🔴 +2.35 kB
assets/useDowngradeToPersonal-VB7c0gHg.js (removed) 10.9 kB 🟢 -10.9 kB 🟢 -2.73 kB 🟢 -2.35 kB
assets/useFeatureFlags-CCmCxsLM.js (removed) 7.32 kB 🟢 -7.32 kB 🟢 -2.06 kB 🟢 -1.76 kB
assets/useFeatureFlags-Uyv6372u.js (new) 7.32 kB 🔴 +7.32 kB 🔴 +2.06 kB 🔴 +1.76 kB
assets/useCompositorLayers-B7T3mDOz.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -898 B 🟢 -804 B
assets/useCompositorLayers-CjwyFBjW.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +897 B 🔴 +806 B
assets/assetPreviewUtil-DvuwRtjG.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +968 B 🔴 +846 B
assets/assetPreviewUtil-vnnqohd1.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -966 B 🟢 -847 B
assets/useUpstreamValue-BizWazXL.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +758 B 🔴 +684 B
assets/useUpstreamValue-BSZ3esBp.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -757 B 🟢 -685 B
assets/useWorkspaceTierLabel-BZ3MNigN.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -813 B 🟢 -696 B
assets/useWorkspaceTierLabel-HmfN1rw9.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +813 B 🔴 +697 B
assets/errorUtil-CBAEQ_e4.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -578 B 🟢 -478 B
assets/subscriptionCheckoutUtil-DJ7JuoSt.js (new) 877 B 🔴 +877 B 🔴 +521 B 🔴 +438 B
assets/subscriptionCheckoutUtil-DVDaeofr.js (removed) 877 B 🟢 -877 B 🟢 -521 B 🟢 -432 B
assets/useSessionCookie-C9NNRDrp.js (removed) 652 B 🟢 -652 B 🟢 -335 B 🟢 -290 B
assets/useSessionCookie-Df3rVj6o.js (new) 652 B 🔴 +652 B 🔴 +337 B 🔴 +291 B
assets/useLoad3d-DcR9J--o.js (removed) 311 B 🟢 -311 B 🟢 -165 B 🟢 -153 B
assets/useLoad3d-QYnnT_tR.js (new) 311 B 🔴 +311 B 🔴 +163 B 🔴 +147 B
assets/useSessionCookie-B4ZNMlTh.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -79 B
assets/useSessionCookie-C_CcV-V9.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +79 B
assets/useFeatureFlags-CIllEnMf.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -81 B
assets/useFeatureFlags-DOajhE_g.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +85 B
assets/useLoad3dViewer-Br4zbl82.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -87 B
assets/useLoad3dViewer-CpmBoMMF.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +88 B
assets/useCurrentUser-CQkuqbYx.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -85 B
assets/useCurrentUser-Dx0HABPX.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +94 B

Status: 18 added / 19 removed / 19 unchanged

Vendor & Third-Party — 16.8 MB (baseline 16.8 MB) • 🔴 +197 B

External libraries and shared vendor chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/vendor-sentry-CwHvS6Tl.js (new) 239 kB 🔴 +239 kB 🔴 +56.7 kB 🔴 +47.5 kB
assets/vendor-sentry-lRf-PDYw.js (removed) 238 kB 🟢 -238 kB 🟢 -56.7 kB 🟢 -47.5 kB

Status: 1 added / 1 removed / 17 unchanged

Other — 14.2 MB (baseline 14.2 MB) • 🔴 +4.25 kB

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-0UpR_7ls.js (new) 115 kB 🔴 +115 kB 🔴 +29.7 kB 🔴 +25.1 kB
assets/core-DOE5rXuC.js (removed) 115 kB 🟢 -115 kB 🟢 -29.7 kB 🟢 -25.1 kB
assets/WidgetSelect-B_7Co-cP.js (new) 88.8 kB 🔴 +88.8 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/WidgetSelect-Cc2cJosD.js (removed) 88.8 kB 🟢 -88.8 kB 🟢 -20.1 kB 🟢 -17.2 kB
assets/SubscriptionPanelContentWorkspace-CSgdpWnG.js (new) 81.2 kB 🔴 +81.2 kB 🔴 +16.1 kB 🔴 +13.9 kB
assets/SubscriptionPanelContentWorkspace-DshDYi-V.js (removed) 81.2 kB 🟢 -81.2 kB 🟢 -16.1 kB 🟢 -13.8 kB
assets/Load3D-BCjvSS7n.js (removed) 73.3 kB 🟢 -73.3 kB 🟢 -12.1 kB 🟢 -10.3 kB
assets/Load3D-gEzqOW2Q.js (new) 73.3 kB 🔴 +73.3 kB 🔴 +12.1 kB 🔴 +10.3 kB
assets/WidgetVideoEdit-DnItwQvG.js (new) 67.5 kB 🔴 +67.5 kB 🔴 +15.7 kB 🔴 +13.9 kB
assets/WidgetVideoEdit-m3VYbHrq.js (removed) 67.5 kB 🟢 -67.5 kB 🟢 -15.7 kB 🟢 -13.9 kB
assets/SubscriptionTransitionPreviewWorkspace-CbCqslC-.js (new) 66.6 kB 🔴 +66.6 kB 🔴 +13.5 kB 🔴 +11.7 kB
assets/SubscriptionTransitionPreviewWorkspace-BlQXGtia.js (removed) 66.6 kB 🟢 -66.6 kB 🟢 -13.4 kB 🟢 -11.7 kB
assets/WorkspaceSettingsPanelContent-B5ahm_Zv.js (new) 58.2 kB 🔴 +58.2 kB 🔴 +12.4 kB 🔴 +10.8 kB
assets/WorkspaceSettingsPanelContent-CXN9-CMO.js (removed) 58.2 kB 🟢 -58.2 kB 🟢 -12.4 kB 🟢 -10.8 kB
assets/Preview3d-1nvO2wGL.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.32 kB 🟢 -7.25 kB
assets/Preview3d-xJawSPS8.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.32 kB 🔴 +7.25 kB
assets/main-vLZAZBkk.js (new) 45.4 kB 🔴 +45.4 kB 🔴 +13.2 kB 🔴 +11.4 kB
assets/main-Bb_fuols.js (removed) 45.3 kB 🟢 -45.3 kB 🟢 -13.2 kB 🟢 -11.4 kB
assets/SubscriptionRequiredDialogContentUnified-CGlqcN4r.js (removed) 42.7 kB 🟢 -42.7 kB 🟢 -9.39 kB 🟢 -8.19 kB
assets/SubscriptionRequiredDialogContentUnified-CU6k_Kyf.js (new) 42.7 kB 🔴 +42.7 kB 🔴 +9.39 kB 🔴 +8.18 kB
assets/LayerEditorContent-DAqMNVxe.js (new) 42.5 kB 🔴 +42.5 kB 🔴 +9.62 kB 🔴 +8.43 kB
assets/LayerEditorContent-VupsE4_T.js (removed) 42.5 kB 🟢 -42.5 kB 🟢 -9.62 kB 🟢 -8.44 kB
assets/WidgetBoundingBoxes-DjukyX4h.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.16 kB 🟢 -8.11 kB
assets/WidgetBoundingBoxes-JBEXC5x1.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.14 kB
assets/WidgetPainter-CckM39s0.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.87 kB 🟢 -6.97 kB
assets/WidgetPainter-DM09UGFw.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.88 kB 🔴 +6.97 kB
assets/Load3dViewerContent-BDwbCvJl.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.28 kB 🔴 +5.45 kB
assets/Load3dViewerContent-CnfvLkuM.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.28 kB 🟢 -5.45 kB
assets/SubscriptionRequiredDialogContent-CS9-PXk-.js (new) 26.9 kB 🔴 +26.9 kB 🔴 +6.36 kB 🔴 +5.6 kB
assets/SubscriptionRequiredDialogContent-DxRvd7TR.js (removed) 26.9 kB 🟢 -26.9 kB 🟢 -6.35 kB 🟢 -5.6 kB
assets/SubscriptionRequiredDialogContentWorkspace-Bq3csZtX.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.81 kB 🟢 -5.11 kB
assets/SubscriptionRequiredDialogContentWorkspace-CKdaW3d5.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.81 kB 🔴 +5.13 kB
assets/CreditsTile-DCs-CbB5.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.65 kB 🔴 +5.84 kB
assets/CreditsTile-ng-ks9Cn.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.65 kB 🟢 -5.84 kB
assets/load3d-D_9_qFWH.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.41 kB 🔴 +4.68 kB
assets/load3d-DAKuzOl1.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.4 kB 🟢 -4.68 kB
assets/CurrentUserPopoverWorkspace-Ds0wvMVv.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +4.94 kB 🔴 +4.4 kB
assets/CurrentUserPopoverWorkspace-NhQFbSVw.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -4.94 kB 🟢 -4.4 kB
assets/SignInContent-3o9CkZsM.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +5.18 kB 🔴 +4.53 kB
assets/SignInContent-B8AZxgbo.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -5.18 kB 🟢 -4.54 kB
assets/WidgetRecordAudio-DVj_wrce.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.6 kB 🔴 +4.1 kB
assets/WidgetRecordAudio-CmcoedpR.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.6 kB 🟢 -4.1 kB
assets/WidgetInputNumber-CwQPUUvR.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.22 kB
assets/WidgetInputNumber-XCjuic5x.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/WidgetRange-CkRSfF4_.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.56 kB 🔴 +3.13 kB
assets/WidgetRange-pX5hnO92.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.55 kB 🟢 -3.13 kB
assets/WaveAudioPlayer-DAAnew90.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.04 kB
assets/WaveAudioPlayer-DiXjxPsf.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.46 kB 🟢 -3.05 kB
assets/WidgetCurve-C4JMJG1c.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.47 kB 🟢 -3.15 kB
assets/WidgetCurve-DSa9CeQk.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.48 kB 🔴 +3.15 kB
assets/TeamWorkspacesDialogContent--Av2M_3M.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.97 kB 🔴 +2.62 kB
assets/TeamWorkspacesDialogContent-mmKOPEcG.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.97 kB 🟢 -2.63 kB
assets/onboardingCloudRoutes-BaudXxUO.js (new) 9.49 kB 🔴 +9.49 kB 🔴 +2.85 kB 🔴 +2.44 kB
assets/onboardingCloudRoutes-2EShklXB.js (removed) 9.46 kB 🟢 -9.46 kB 🟢 -2.84 kB 🟢 -2.44 kB
assets/Load3DConfiguration-DHFCMkNp.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/Load3DConfiguration-r42z_wEJ.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/WidgetImageCrop-CsGXQM2_.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.66 kB 🔴 +2.34 kB
assets/WidgetImageCrop-DgHBager.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.66 kB 🟢 -2.36 kB
assets/SetMemberCreditLimitDialogContent-B1tXV2KX.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.04 kB
assets/SetMemberCreditLimitDialogContent-ClGuVD6m.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/nodeTemplates-B3z6UroC.js (removed) 8.32 kB 🟢 -8.32 kB 🟢 -2.85 kB 🟢 -2.51 kB
assets/nodeTemplates-EwAg9LK8.js (new) 8.32 kB 🔴 +8.32 kB 🔴 +2.86 kB 🔴 +2.51 kB
assets/NightlySurveyController-Dzsu7ts-.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.55 kB 🟢 -2.25 kB
assets/NightlySurveyController-m8WozO3o.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.25 kB
assets/CloudRunButtonWrapper-Bw3OC5MU.js (new) 7.29 kB 🔴 +7.29 kB 🔴 +2.29 kB 🔴 +2.01 kB
assets/CloudRunButtonWrapper-CuL85OyU.js (removed) 7.29 kB 🟢 -7.29 kB 🟢 -2.29 kB 🟢 -2 kB
assets/WidgetWithControl-DvFYHx4L.js (new) 6.51 kB 🔴 +6.51 kB 🔴 +2.67 kB 🔴 +2.36 kB
assets/WidgetWithControl-gQpQuus2.js (removed) 6.48 kB 🟢 -6.48 kB 🟢 -2.64 kB 🟢 -2.31 kB
assets/missingModelMetadata-B7DLbbqb.js (removed) 6.45 kB 🟢 -6.45 kB 🟢 -2.21 kB 🟢 -1.93 kB
assets/missingModelMetadata-Dxd1q2Uc.js (new) 6.45 kB 🔴 +6.45 kB 🔴 +2.2 kB 🔴 +1.93 kB
assets/CancelSubscriptionDialogContent-DBnf4HoQ.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.74 kB
assets/CancelSubscriptionDialogContent-CVAOE2De.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.75 kB
assets/load3dPreviewExtensions-COOHfV1N.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.61 kB
assets/load3dPreviewExtensions-DQqW1nyM.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.6 kB
assets/launchCancellationFlow-C3-mlTh_.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.79 kB 🔴 +1.56 kB
assets/launchCancellationFlow-BC93bXeU.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-CDysFLgm.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/CreateWorkspaceDialogContent-CIwcb0s4.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.79 kB 🟢 -1.54 kB
assets/ChangeMemberRoleDialogContent-CbSrkgjT.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.64 kB 🟢 -1.43 kB
assets/ChangeMemberRoleDialogContent-CkYIcSn1.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.64 kB 🔴 +1.43 kB
assets/InviteMemberDialogContent-DO7ydGCk.js (removed) 4.96 kB 🟢 -4.96 kB 🟢 -1.64 kB 🟢 -1.44 kB
assets/InviteMemberDialogContent-qHl-_KmD.js (new) 4.96 kB 🔴 +4.96 kB 🔴 +1.64 kB 🔴 +1.44 kB
assets/EditWorkspaceDialogContent-BlNDmphe.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.53 kB
assets/EditWorkspaceDialogContent-DodUun4M.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.52 kB
assets/WidgetTextarea-BKXzMCbq.js (new) 4.83 kB 🔴 +4.83 kB 🔴 +1.89 kB 🔴 +1.65 kB
assets/WidgetTextarea-BNZ9SwVB.js (removed) 4.83 kB 🟢 -4.83 kB 🟢 -1.88 kB 🟢 -1.65 kB
assets/saveMesh-CjWZnnN2.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.34 kB
assets/saveMesh-DBgBngG5.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.34 kB
assets/WorkspacePanelContent-D1BhMtdE.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.63 kB 🟢 -1.44 kB
assets/WorkspacePanelContent-vA81wjVW.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.63 kB 🔴 +1.44 kB
assets/ValueControlPopover-CQHyWhGN.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/ValueControlPopover-D32euKu1.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/reportError-gkwW-D2R.js (new) 4.02 kB 🔴 +4.02 kB 🔴 +1.72 kB 🔴 +1.46 kB
assets/DeleteWorkspaceDialogContent-CtsG2Ibg.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.24 kB
assets/DeleteWorkspaceDialogContent-qaD2T5iK.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.24 kB
assets/RemoveMemberDialogContent-BkWESKoR.js (new) 3.76 kB 🔴 +3.76 kB 🔴 +1.39 kB 🔴 +1.22 kB
assets/RemoveMemberDialogContent-CFFk93BE.js (removed) 3.76 kB 🟢 -3.76 kB 🟢 -1.38 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-B46mMMav.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.39 kB 🟢 -1.21 kB
assets/RevokeInviteDialogContent-BxbEmp-C.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.39 kB 🔴 +1.21 kB
assets/LeaveWorkspaceDialogContent-CBcXaJfX.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.38 kB 🟢 -1.19 kB
assets/LeaveWorkspaceDialogContent-DuPVMUxf.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/InviteMemberUpsellDialogContent-eoPgi-8f.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/InviteMemberUpsellDialogContent-tsotSZfb.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/workspaceCheckoutTelemetry-C1i1b_sY.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.33 kB
assets/workspaceCheckoutTelemetry-DeURQ0Hf.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.32 kB
assets/GlobalToast-Dc7FeQkK.js (removed) 3.25 kB 🟢 -3.25 kB 🟢 -1.3 kB 🟢 -1.11 kB
assets/GlobalToast-NwaWgnow.js (new) 3.25 kB 🔴 +3.25 kB 🔴 +1.3 kB 🔴 +1.11 kB
assets/Media3DTop-CAThA4bc.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.11 kB
assets/Media3DTop-XWnsl9Ny.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.26 kB 🟢 -1.1 kB
assets/load3dAdvanced-CBth-os6.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +955 B
assets/load3dAdvanced-CROgtdXK.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.09 kB 🟢 -956 B
assets/SubscribeToRun-DJiKgv0_.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.03 kB 🔴 +909 B
assets/SubscribeToRun-DmLoJnD2.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.03 kB 🟢 -905 B
assets/MediaAudioTop-C1QlvuoB.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +807 B 🔴 +669 B
assets/MediaAudioTop-C6z8TkYN.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -807 B 🟢 -668 B
assets/cloudSessionCookie-Ddf-ceMZ.js (removed) 933 B 🟢 -933 B 🟢 -431 B 🟢 -375 B
assets/cloudSessionCookie-DL_yjXYr.js (new) 933 B 🔴 +933 B 🔴 +431 B 🔴 +376 B
assets/cloudBadges-COgH6sFQ.js (new) 922 B 🔴 +922 B 🔴 +515 B 🔴 +455 B
assets/cloudBadges-DFo-eUEd.js (removed) 922 B 🟢 -922 B 🟢 -513 B 🟢 -442 B
assets/Load3DAdvanced-B7cWpKvq.js (new) 761 B 🔴 +761 B 🔴 +425 B 🔴 +361 B
assets/Load3DAdvanced-BRLqfi9w.js (removed) 761 B 🟢 -761 B 🟢 -423 B 🟢 -358 B
assets/nightlyBadges-B9mlA98K.js (removed) 411 B 🟢 -411 B 🟢 -272 B 🟢 -230 B
assets/nightlyBadges-pBqm02UU.js (new) 411 B 🔴 +411 B 🔴 +273 B 🔴 +230 B
assets/Load3dViewerContent-CjvgaxDi.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -91 B
assets/Load3dViewerContent-DRfIb9BA.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +91 B
assets/missingModelMetadata-C_YMFt2g.js (removed) 125 B 🟢 -125 B 🟢 -103 B 🟢 -102 B
assets/missingModelMetadata-CZX8dBrN.js (new) 125 B 🔴 +125 B 🔴 +103 B 🔴 +120 B
assets/Load3DAdvanced-C5MOoPyN.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +90 B
assets/Load3DAdvanced-DFxZLL9E.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -89 B
assets/WidgetLegacy-BV4p8AeS.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -92 B
assets/WidgetLegacy-CMURAY-V.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +103 B
assets/workflowDraftStoreV2-BmRj-fIT.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -110 B
assets/workflowDraftStoreV2-L5lLQ0Oj.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +111 B
assets/Load3D-BX-ysKzE.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -86 B
assets/Load3D-C496cwjU.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +78 B
assets/changeTracker-B8DhkCRg.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +85 B
assets/changeTracker-BkLU_l4Q.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -85 B

Status: 69 added / 68 removed / 217 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.9 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.5 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.3 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.8 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 73.0 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 78.3 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 74.1 MB heap
legacy-node-drag: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 75.3 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 71.0 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.5 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.9 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.3 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 142ms TBT · 98.5 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 79.6 MB heap
vue-large-graph-idle: · 55.4 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 168.1 MB heap
vue-large-graph-pan: · 57.2 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 53ms TBT · 172.3 MB heap
workflow-execution: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.4 MB heap

⚠️ 5 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 474ms 533ms +12% ⚠️ z=4.4
large-graph-pan: task duration 1140ms 1175ms +3% ⚠️ z=2.2
minimap-idle: style recalc duration 7ms 11ms +55% ⚠️ z=2.3
subgraph-idle: task duration 471ms 470ms -0% ⚠️ z=3.2
workflow-execution: event listeners 27 74 +174% ⚠️ z=5.1
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms -0% z=-0.5
canvas-idle: p95 frame time 17ms 17ms -1%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 7ms 8ms +23% z=-2.8
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 8 9 +6% z=-4.7
canvas-idle: task duration 474ms 533ms +12% ⚠️ z=4.4
canvas-idle: script duration 6ms 7ms +7% z=-8.3
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 56.2 MB 59.9 MB +7%
canvas-idle: DOM nodes -282 -283 +0% z=-239.2
canvas-idle: event listeners -151 -166 +10% z=-37.5
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=-0.4
canvas-mouse-sweep: p95 frame time 17ms 17ms -1%
canvas-mouse-sweep: layout duration 4ms 4ms -3% z=-0.2
canvas-mouse-sweep: style recalc duration 39ms 35ms -11% z=-2.5
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 75 73 -3% z=-2.4
canvas-mouse-sweep: task duration 859ms 860ms +0% z=-0.1
canvas-mouse-sweep: script duration 110ms 113ms +3% z=-3.5
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 69.9 MB 60.5 MB -14%
canvas-mouse-sweep: DOM nodes -281 -281 -0% z=-132.5
canvas-mouse-sweep: event listeners -183 -150 -18% z=-38.0
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 +4% z=0.2
canvas-zoom-sweep: style recalc duration 16ms 17ms +5% z=-1.6
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 31 -2% z=-1.7
canvas-zoom-sweep: task duration 352ms 343ms -3% z=0.7
canvas-zoom-sweep: script duration 9ms 9ms +3% z=-6.0
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 60.2 MB 60.3 MB +0%
canvas-zoom-sweep: DOM nodes 76 76 -1% z=-4.7
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 8ms 9ms +21% z=-0.8
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 11 +0% z=-4.2
dom-widget-clipping: task duration 353ms 360ms +2% z=-0.3
dom-widget-clipping: script duration 54ms 55ms +2% z=-3.9
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 67.7 MB 67.8 MB +0%
dom-widget-clipping: DOM nodes 18 18 +0% z=-2.9
dom-widget-clipping: event listeners 2 2 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms -0% z=-1.0
large-graph-idle: p95 frame time 17ms 17ms -0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 10ms 13ms +26% z=0.5
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 9 -10% z=-8.3
large-graph-idle: task duration 599ms 599ms +0% z=1.1
large-graph-idle: script duration 15ms 14ms -2% z=-8.4
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 72.7 MB 73.0 MB +0%
large-graph-idle: DOM nodes -260 -261 +0% z=-315.5
large-graph-idle: event listeners -151 -149 -1% z=-28.7
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 14ms 13ms -2% z=-4.9
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 +0% z=-0.9
large-graph-pan: task duration 1140ms 1175ms +3% ⚠️ z=2.2
large-graph-pan: script duration 325ms 332ms +2% z=-3.8
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 73.3 MB 78.3 MB +7%
large-graph-pan: DOM nodes -270 -275 +2% z=-177.9
large-graph-pan: event listeners -147 -163 +11% z=-202.8
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 7ms +2%
large-graph-zoom: style recalc duration 12ms 12ms -0%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 63 63 -1%
large-graph-zoom: task duration 1267ms 1300ms +3%
large-graph-zoom: script duration 372ms 379ms +2%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 73.0 MB 74.1 MB +1%
large-graph-zoom: DOM nodes 6 6 +0%
large-graph-zoom: event listeners 8 8 +0%
legacy-node-drag: avg frame time 17ms 17ms -0%
legacy-node-drag: p95 frame time 17ms 17ms +0%
legacy-node-drag: layout duration 0ms 0ms +0%
legacy-node-drag: style recalc duration 9ms 9ms +2%
legacy-node-drag: layout count 0 0 +0%
legacy-node-drag: style recalc count 46 46 +0%
legacy-node-drag: task duration 1432ms 1403ms -2%
legacy-node-drag: script duration 461ms 451ms -2%
legacy-node-drag: TBT 0ms 0ms +0%
legacy-node-drag: heap used 60.8 MB 75.3 MB +24%
legacy-node-drag: DOM nodes -241 -131 -46%
legacy-node-drag: event listeners 186 109 -42%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.9
minimap-idle: p95 frame time 17ms 17ms -0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 7ms 11ms +55% ⚠️ z=2.3
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 9 +13% z=-0.8
minimap-idle: task duration 602ms 599ms -0% z=1.5
minimap-idle: script duration 16ms 14ms -8% z=-8.5
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 71.1 MB 71.0 MB -0%
minimap-idle: DOM nodes -267 -267 +0% z=-209.2
minimap-idle: event listeners -147 -147 +0% z=-229.6
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 9ms 10ms +8% z=-2.7
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 46 47 +1% z=-2.5
subgraph-dom-widget-clipping: task duration 375ms 389ms +4% z=0.6
subgraph-dom-widget-clipping: script duration 115ms 119ms +4% z=-1.4
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 68.5 MB 68.5 MB -0%
subgraph-dom-widget-clipping: DOM nodes 18 19 +6% z=-2.8
subgraph-dom-widget-clipping: event listeners 8 8 +0% z=-1.4
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 8ms 8ms +3% z=-3.0
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 10 +6% z=-2.1
subgraph-idle: task duration 471ms 470ms -0% ⚠️ z=3.2
subgraph-idle: script duration 6ms 6ms -3% z=-5.4
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 60.0 MB 57.9 MB -3%
subgraph-idle: DOM nodes -281 -282 +0% z=-203.2
subgraph-idle: event listeners -149 -149 +0% 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 4ms 5ms +4% z=-0.3
subgraph-mouse-sweep: style recalc duration 35ms 38ms +9% z=-1.3
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 76 -1% z=-2.4
subgraph-mouse-sweep: task duration 759ms 818ms +8% z=0.7
subgraph-mouse-sweep: script duration 81ms 86ms +7% z=-2.3
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 60.2 MB 63.3 MB +5%
subgraph-mouse-sweep: DOM nodes -278 -281 +1% z=-155.5
subgraph-mouse-sweep: event listeners -151 -167 +11% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +0%
subgraph-transition-enter: layout duration 14ms 14ms +2%
subgraph-transition-enter: style recalc duration 32ms 31ms -3%
subgraph-transition-enter: layout count 14 13 -7%
subgraph-transition-enter: style recalc count 19 18 -5%
subgraph-transition-enter: task duration 908ms 901ms -1%
subgraph-transition-enter: script duration 17ms 16ms -3%
subgraph-transition-enter: TBT 140ms 142ms +1%
subgraph-transition-enter: heap used 99.0 MB 98.5 MB -1%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2375 2375 +0%
viewport-pan-sweep: avg frame time 17ms 17ms -0%
viewport-pan-sweep: p95 frame time 17ms 17ms +0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 36ms 36ms -1%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 251 250 -1%
viewport-pan-sweep: task duration 4058ms 4054ms -0%
viewport-pan-sweep: script duration 1018ms 1020ms +0%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 79.9 MB 79.6 MB -0%
viewport-pan-sweep: DOM nodes -269 -264 -2%
viewport-pan-sweep: event listeners -133 -133 +0%
vue-large-graph-idle: avg frame time 18ms 18ms +2%
vue-large-graph-idle: p95 frame time 17ms 17ms +1%
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 16051ms 16380ms +2%
vue-large-graph-idle: script duration 109ms 112ms +2%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 165.5 MB 168.1 MB +2%
vue-large-graph-idle: DOM nodes -8312 -8312 +0%
vue-large-graph-idle: event listeners -16389 -16389 +0%
vue-large-graph-pan: avg frame time 18ms 17ms -2%
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 17ms 17ms +1%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 172 170 -1%
vue-large-graph-pan: task duration 19926ms 19949ms +0%
vue-large-graph-pan: script duration 409ms 397ms -3%
vue-large-graph-pan: TBT 54ms 53ms -3%
vue-large-graph-pan: heap used 181.8 MB 172.3 MB -5%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16385 -16384 -0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms +1%
workflow-execution: layout duration 2ms 1ms -25% z=-1.8
workflow-execution: style recalc duration 17ms 20ms +20% z=-1.8
workflow-execution: layout count 7 4 -50% z=-2.7
workflow-execution: style recalc count 8 10 +25% z=-3.8
workflow-execution: task duration 81ms 100ms +23% z=-2.1
workflow-execution: script duration 7ms 8ms +20% z=-7.2
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 61.0 MB 61.4 MB +1%
workflow-execution: DOM nodes 131 128 -2% z=-4.6
workflow-execution: event listeners 27 74 +174% ⚠️ z=5.1
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-08-18T20:54:19.822Z",
  "gitSha": "ef72bd8f2656e40e6ddc839e4233cdc8b3c7e211",
  "branch": "fix/unified-report-error",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2137.587999999994,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.478999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 583.635,
      "heapDeltaBytes": 9872488,
      "heapUsedBytes": 70354196,
      "domNodes": -283,
      "jsHeapTotalBytes": 5234688,
      "scriptDurationMs": 7.184999999999999,
      "eventListeners": -181,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-idle",
      "durationMs": 2036.4980000000514,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.239000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 481.54100000000005,
      "heapDeltaBytes": -5832316,
      "heapUsedBytes": 55354180,
      "domNodes": -282,
      "jsHeapTotalBytes": 4448256,
      "scriptDurationMs": 6.380999999999999,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1857.4700000000348,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 37.004,
      "layouts": 12,
      "layoutDurationMs": 3.6130000000000004,
      "taskDurationMs": 882.8209999999999,
      "heapDeltaBytes": 3224212,
      "heapUsedBytes": 63941232,
      "domNodes": -279,
      "jsHeapTotalBytes": 4448256,
      "scriptDurationMs": 117.92699999999999,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1835.3020000000697,
      "styleRecalcs": 72,
      "styleRecalcDurationMs": 32.766000000000005,
      "layouts": 12,
      "layoutDurationMs": 3.5329999999999995,
      "taskDurationMs": 837.9340000000001,
      "heapDeltaBytes": 2508160,
      "heapUsedBytes": 62851364,
      "domNodes": -282,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 107.766,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1733.7949999999864,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 17.616,
      "layouts": 6,
      "layoutDurationMs": 0.722,
      "taskDurationMs": 345.702,
      "heapDeltaBytes": 2786984,
      "heapUsedBytes": 63162500,
      "domNodes": 76,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 9.174999999999999,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1711.8480000000318,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 15.654000000000002,
      "layouts": 6,
      "layoutDurationMs": 0.5840000000000001,
      "taskDurationMs": 340.776,
      "heapDeltaBytes": 2777724,
      "heapUsedBytes": 63241200,
      "domNodes": 75,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 9.154,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 585.1620000000253,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.493999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 372.572,
      "heapDeltaBytes": 10758524,
      "heapUsedBytes": 71179252,
      "domNodes": 18,
      "jsHeapTotalBytes": 5242880,
      "scriptDurationMs": 55.44800000000001,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 571.843000000058,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 346.986,
      "heapDeltaBytes": 10413204,
      "heapUsedBytes": 70915104,
      "domNodes": 18,
      "jsHeapTotalBytes": 5242880,
      "scriptDurationMs": 54.54800000000001,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2037.8029999999967,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.808,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 584.6139999999999,
      "heapDeltaBytes": 2467860,
      "heapUsedBytes": 76568004,
      "domNodes": -258,
      "jsHeapTotalBytes": -1576960,
      "scriptDurationMs": 13.560999999999996,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2062.3509999999214,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 16.591,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 613.656,
      "heapDeltaBytes": 2343008,
      "heapUsedBytes": 76457584,
      "domNodes": -263,
      "jsHeapTotalBytes": -1839104,
      "scriptDurationMs": 15.118,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2141.6659999999865,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 13.921999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1158.229,
      "heapDeltaBytes": 13974628,
      "heapUsedBytes": 88048284,
      "domNodes": -282,
      "jsHeapTotalBytes": 4677632,
      "scriptDurationMs": 327.73,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2139.454999999998,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 12.891000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1191.4,
      "heapDeltaBytes": 1178792,
      "heapUsedBytes": 76207656,
      "domNodes": -267,
      "jsHeapTotalBytes": -1875968,
      "scriptDurationMs": 336.84600000000006,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3183.2319999999754,
      "styleRecalcs": 62,
      "styleRecalcDurationMs": 11.668000000000001,
      "layouts": 60,
      "layoutDurationMs": 6.801,
      "taskDurationMs": 1308.441,
      "heapDeltaBytes": 15839904,
      "heapUsedBytes": 77979156,
      "domNodes": 6,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 377.532,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3124.1110000000845,
      "styleRecalcs": 63,
      "styleRecalcDurationMs": 11.431999999999999,
      "layouts": 60,
      "layoutDurationMs": 6.8950000000000005,
      "taskDurationMs": 1291.4569999999999,
      "heapDeltaBytes": 15356996,
      "heapUsedBytes": 77429724,
      "domNodes": 6,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 380.142,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "legacy-node-drag",
      "durationMs": 2358.748999999989,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.848,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1394.051,
      "heapDeltaBytes": 12077660,
      "heapUsedBytes": 94754068,
      "domNodes": 14,
      "jsHeapTotalBytes": 7602176,
      "scriptDurationMs": 458.772,
      "eventListeners": 186,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "legacy-node-drag",
      "durationMs": 2121.3599999999815,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 7.977000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1411.7700000000002,
      "heapDeltaBytes": -19437132,
      "heapUsedBytes": 63243884,
      "domNodes": -276,
      "jsHeapTotalBytes": 7929856,
      "scriptDurationMs": 444.157,
      "eventListeners": 31,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2050.1539999999636,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 11.560999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 600.9209999999999,
      "heapDeltaBytes": -5341396,
      "heapUsedBytes": 75225032,
      "domNodes": -264,
      "jsHeapTotalBytes": 4784128,
      "scriptDurationMs": 13.653999999999996,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2056.67799999992,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 11.401000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 596.817,
      "heapDeltaBytes": -6995572,
      "heapUsedBytes": 73735892,
      "domNodes": -270,
      "jsHeapTotalBytes": 3403776,
      "scriptDurationMs": 15.045999999999998,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 562.8240000000346,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.492,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 380.664,
      "heapDeltaBytes": 11375848,
      "heapUsedBytes": 71651452,
      "domNodes": 20,
      "jsHeapTotalBytes": 5505024,
      "scriptDurationMs": 114.984,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 588.9640000000327,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 9.774000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 396.529,
      "heapDeltaBytes": 11066936,
      "heapUsedBytes": 71955128,
      "domNodes": 18,
      "jsHeapTotalBytes": 5767168,
      "scriptDurationMs": 123.73500000000001,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1991.4859999999521,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.297,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 470.1289999999999,
      "heapDeltaBytes": -223300,
      "heapUsedBytes": 60409516,
      "domNodes": -282,
      "jsHeapTotalBytes": 4448256,
      "scriptDurationMs": 5.72,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1997.5110000000313,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.910999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 470.576,
      "heapDeltaBytes": 773788,
      "heapUsedBytes": 60955180,
      "domNodes": -282,
      "jsHeapTotalBytes": 4186112,
      "scriptDurationMs": 5.849999999999998,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1767.7229999999895,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 39.436,
      "layouts": 16,
      "layoutDurationMs": 4.432,
      "taskDurationMs": 817.231,
      "heapDeltaBytes": -1688860,
      "heapUsedBytes": 59099316,
      "domNodes": -280,
      "jsHeapTotalBytes": 4448256,
      "scriptDurationMs": 87.642,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1759.539000000018,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 36.878,
      "layouts": 16,
      "layoutDurationMs": 4.767,
      "taskDurationMs": 818.014,
      "heapDeltaBytes": 12633776,
      "heapUsedBytes": 73602756,
      "domNodes": -281,
      "jsHeapTotalBytes": 4448256,
      "scriptDurationMs": 84.43900000000001,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1417.293000000086,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 30.744000000000007,
      "layouts": 13,
      "layoutDurationMs": 14.325999999999999,
      "taskDurationMs": 900.609,
      "heapDeltaBytes": 22204716,
      "heapUsedBytes": 103317228,
      "domNodes": 13673,
      "jsHeapTotalBytes": 11010048,
      "scriptDurationMs": 16.108000000000004,
      "eventListeners": 2375,
      "totalBlockingTimeMs": 142,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8254.161000000011,
      "styleRecalcs": 248,
      "styleRecalcDurationMs": 34.906000000000006,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4039.446,
      "heapDeltaBytes": 9779112,
      "heapUsedBytes": 83808124,
      "domNodes": -268,
      "jsHeapTotalBytes": -827392,
      "scriptDurationMs": 1026.5849999999998,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8202.079000000027,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 36.367999999999995,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4068.9529999999995,
      "heapDeltaBytes": 9342416,
      "heapUsedBytes": 83211696,
      "domNodes": -260,
      "jsHeapTotalBytes": -1089536,
      "scriptDurationMs": 1013.941,
      "eventListeners": -135,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 16812.028999999995,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16217.61,
      "heapDeltaBytes": -47358404,
      "heapUsedBytes": 173433088,
      "domNodes": -8312,
      "jsHeapTotalBytes": -15667200,
      "scriptDurationMs": 113.211,
      "eventListeners": -16387,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 18.333333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17208.63899999995,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16541.666,
      "heapDeltaBytes": -26224828,
      "heapUsedBytes": 179004424,
      "domNodes": -8312,
      "jsHeapTotalBytes": -15360000,
      "scriptDurationMs": 110.68500000000002,
      "eventListeners": -16391,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20503.629000000044,
      "styleRecalcs": 172,
      "styleRecalcDurationMs": 17.369000000000025,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20000.472,
      "heapDeltaBytes": -47818916,
      "heapUsedBytes": 170842700,
      "domNodes": -8312,
      "jsHeapTotalBytes": -11165696,
      "scriptDurationMs": 402.365,
      "eventListeners": -16382,
      "totalBlockingTimeMs": 73,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20540.069000000018,
      "styleRecalcs": 168,
      "styleRecalcDurationMs": 16.737999999999975,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 19896.797999999995,
      "heapDeltaBytes": -15502240,
      "heapUsedBytes": 190583520,
      "domNodes": -8312,
      "jsHeapTotalBytes": -13856768,
      "scriptDurationMs": 390.989,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 32,
      "frameDurationMs": 17.77333333333336,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 140.80599999999777,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 17.707,
      "layouts": 3,
      "layoutDurationMs": 1.2389999999999999,
      "taskDurationMs": 89.09100000000002,
      "heapDeltaBytes": 3187788,
      "heapUsedBytes": 63735548,
      "domNodes": 137,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 8.288000000000002,
      "eventListeners": 49,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 489.76700000002893,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 23.002,
      "layouts": 4,
      "layoutDurationMs": 1.3359999999999999,
      "taskDurationMs": 110.348,
      "heapDeltaBytes": 4946552,
      "heapUsedBytes": 65031632,
      "domNodes": 119,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 7.465000000000001,
      "eventListeners": 99,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    }
  ]
}

@github-actions github-actions Bot added the risk:R3 PR risk grade (advisory shadow check; grader-owned) label Aug 17, 2026
@codecov

codecov Bot commented Aug 17, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 82.22222% with 8 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/bootstrap.ts 0.00% 3 Missing ⚠️
src/App.vue 0.00% 2 Missing ⚠️
src/main.ts 0.00% 2 Missing ⚠️
src/platform/cloud/onboarding/auth.ts 50.00% 1 Missing ⚠️
@@            Coverage Diff             @@
##             main   #15346      +/-   ##
==========================================
+ Coverage   78.98%   81.39%   +2.41%     
==========================================
  Files        2209     1883     -326     
  Lines      119645   114770    -4875     
  Branches    36919    35757    -1162     
==========================================
- Hits        94496    93418    -1078     
+ Misses      24615    20919    -3696     
+ Partials      534      433     -101     
Flag Coverage Δ
unit 72.97% <82.22%> (+0.01%) ⬆️
website-unit ?

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

Files with missing lines Coverage Δ
src/platform/telemetry/reportError.ts 100.00% <100.00%> (ø)
src/platform/workspace/auth/WorkspaceAuthGate.vue 93.10% <100.00%> (ø)
...tform/workspace/composables/useWorkspaceBilling.ts 76.06% <100.00%> (ø)
src/stores/bootstrapStore.ts 100.00% <100.00%> (ø)
src/platform/cloud/onboarding/auth.ts 32.50% <50.00%> (+4.84%) ⬆️
src/App.vue 26.82% <0.00%> (ø)
src/main.ts 56.36% <0.00%> (-2.13%) ⬇️
src/bootstrap.ts 16.66% <0.00%> (-8.34%) ⬇️

... and 335 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.

…aches both sinks

`captureException` reaches Sentry only. That is how
`workspace_auth_gate_initialization_failure` — one of the two error types
IR-105 is tracked by — fired in production while reading as zero on every
Datadog dashboard. Only `bootstrap_auth_wait_timeout` dual-wrote, and it did
so by hand at the call site.

Adds `reportError(cause, { errorType, tags, context, level })` and migrates
all seven call sites onto it. `error_type` lands as a Sentry tag and a RUM
context field under the same name, so one query works against either console.

Two further ways a report could go nowhere, both fixed here:

- `Sentry.init({ enabled: __SENTRY_ENABLED__ })` baked the flag from the
  *build machine's* `SENTRY_DSN`, but cloud resolves its DSN at runtime from
  remote config. A cloud build without the env var left every capture in the
  app inert no matter how valid the runtime DSN was. `enabled` now derives
  from the resolved DSN. The dead define is removed rather than left to rot.

- Datadog RUM initializes behind `initDatadogRum()`'s dynamic import while
  Sentry initializes in `main.ts`, so early-boot failures could be raised
  before either sink existed and were dropped silently — precisely the
  failures that leave a user on the splash screen. Reports raised before a
  sink is live are now buffered (bounded at 25) and flushed once one comes up.

`reportError` never throws: a failing error reporter must not become a second
failure.
Self-review catch. `reportError` guarded its dispatch but `flushErrorReports`
did not, and that one is called directly from `main.ts` and `bootstrap.ts`.
A sink that threw during the flush would have taken the whole app down instead
of the single report it failed to deliver — the exact failure the module exists
to prevent.

Also stops forwarding an explicit `level: undefined` into the RUM context when
no level was given.

Test verified red-green: it fails with the guard removed.
@christian-byrne
christian-byrne force-pushed the fix/unified-report-error branch from 5d67212 to a3be8f2 Compare August 18, 2026 20:41
@christian-byrne

Copy link
Copy Markdown
Contributor Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor
⚠️ Action not completed

Review rate limited.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@christian-byrne

Copy link
Copy Markdown
Contributor Author

@coderabbitai full review

@coderabbitai

coderabbitai Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor
⚠️ Action not completed

Review rate limited.


Your included review limit is currently reached under our Fair Usage Limits Policy. Your current included review allowance is based on your included PR review attempts over the past 7 days. This review may still proceed through usage-based billing if eligible. Your next included review will be available in 24 minutes.

@christian-byrne

Copy link
Copy Markdown
Contributor Author

@huang47 assigning you — you reviewed #15063, which introduced bootstrap_auth_wait_timeout; this generalises that PR's hand-rolled dual-write.

CI is fully green (54 checks, 0 failures). CodeRabbit has not reviewed this one — the org is rate-limited (4 included reviews/hour, 64 used in the past 7 days) and three trigger attempts all came back limited, so this has had no bot pass.

Self-review found and fixed two real defects, both in a follow-up commit:

  • flushErrorReports was unguarded while being called directly from main.ts and bootstrap.ts — a throwing sink would have taken the app down instead of the one report it failed to deliver. Test verified red-green.
  • An explicit level: undefined was leaking into the RUM context.

The one line most worth your eye is the Sentry.init enabled change: it now derives from the resolved DSN rather than the build-time define, so Sentry activates in any non-dev build with a resolvable DSN. That is the intent — it is what made every capture inert when a cloud build lacked SENTRY_DSN — but it is the only behavioural change beyond reaching a second sink.

@huang47

huang47 commented Aug 18, 2026

Copy link
Copy Markdown
Contributor

I can be wrong, I suppose datadog automatically capturing console.error, or do we explicitly disable it?

@huang47

huang47 commented Aug 18, 2026

Copy link
Copy Markdown
Contributor

Also maybe worth putting the guidance somewhere given that we advocate reportError instead of Sentry.captureException. There should be a way for AI agents to honor this convention. Thoughts?

@christian-byrne
christian-byrne added this pull request to the merge queue Aug 18, 2026
Merged via the queue into main with commit 514ea06 Aug 18, 2026
70 checks passed
@christian-byrne
christian-byrne deleted the fix/unified-report-error branch August 18, 2026 21:41
comfydesigner pushed a commit that referenced this pull request Aug 20, 2026
…aches both sinks (#15346)

## Summary

`captureException` reaches Sentry only. That is how
`workspace_auth_gate_initialization_failure` — one of the two
`error_type` values IR-105 is tracked by — fired in production while
reading as **zero** on every Datadog dashboard. Only
`bootstrap_auth_wait_timeout` dual-wrote, and it did so by hand at the
call site.

Adds `reportError(cause, { errorType, tags, context, level })` and
migrates all seven call sites onto it. `error_type` lands as a Sentry
tag and a RUM context field under the same name, so one query works
against either console.

## Two further ways a report could go nowhere

**Build-time flag defeated the runtime DSN.** `Sentry.init({ enabled:
__SENTRY_ENABLED__ })` baked the flag from the *build machine's*
`SENTRY_DSN`, but cloud resolves its DSN at runtime from remote config
(`sentry_dsn`). A cloud build without the env var left every capture in
the app inert no matter how valid the runtime DSN turned out to be.
`enabled` now derives from the resolved DSN; the dead define is removed
rather than left to rot.

**Early-boot reports were dropped.** Datadog RUM initializes behind
`initDatadogRum()`'s fire-and-forget dynamic import in `bootstrap.ts`
while Sentry initializes in `main.ts`, so a failure raised before either
sink existed went nowhere — precisely the failures that leave a user on
the splash screen. Reports raised before a sink is live are now buffered
(bounded at 25) and flushed once one comes up.

`reportError` never throws: a failing error reporter must not become a
second failure.

## Verification

- `src/platform/telemetry/reportError.test.ts` — 8 cases: both-sink
fan-out, degraded single-sink, buffer-then-flush, no double-replay,
bounded buffer, non-`Error` normalization, `undefined` tag stripping,
sink-throws containment.
- Existing suites migrated off the `@sentry/vue` mock onto the
`reportError` mock: `bootstrapStore`, `WorkspaceAuthGate`,
`useWorkspaceBilling`.
- `pnpm vitest run src/platform/telemetry/
src/platform/cloud/onboarding/auth.test.ts` — 391 passed.
- `pnpm lint`, `pnpm typecheck`, `pnpm knip` clean.

## Regression risk

Low-to-moderate. No behavior change at any call site beyond reaching a
second sink. The `enabled` change means Sentry now activates in any
non-dev build with a resolvable DSN — which is the intent, but it is the
one line worth a close look.

## Follow-ups (not in this PR)

- Boot chunks that 404 never execute JS at all, so no in-app reporter
can see them. Needs an inline sentinel in `index.html`.
- The `/` -> `/cloud/login` -> `/cloud/user-check` redirect loop emits
neither `error_type` because auth succeeds on every lap. Needs its own
instrumentation.
@christian-byrne

Copy link
Copy Markdown
Contributor Author

@huang47 both good questions — answering the first one properly because you were right and it changes what I claimed.

Yes, Datadog auto-captures console.error, and we do not disable it. Checked against RUM, last 14d on the cloud app:

@error.source events
console 617,231
source 113,891
report 2,926
custom 123

So console is the overwhelming majority, and custom (the addError path) is a rounding error by comparison.

Which means my "invisible on every Datadog dashboard" line was too strong, and I should correct it. WorkspaceAuthGate failures were reaching Datadog the whole time via the console.error on the line above the capture — 637 events in 14d, all source:console, all classified first_party:

349  [WorkspaceAuthGate] Initialization failed: Error: Failed to load authenticated remote config
137  [WorkspaceAuthGate] Initialization failed: Error: invalid auth token
 65  [WorkspaceAuthGate] Initialization failed: Error: Failed to initialize unified cloud auth
 58  [WorkspaceAuthGate] Initialization failed: Error: Failed to initialize workspace context
 10  [WorkspaceAuthGate] Initialization failed: Error: Config refresh timeout

What was actually missing was the tag, not the event. Untagged, it is a substring match inside 617k console errors — not queryable by error_type, not groupable, not alertable, and invisible to anything built on the error_type facet. That is still worth fixing, but "untagged and unfindable" is the accurate claim, not "absent". Thanks for pushing on it.

Worth noting for anyone reading later: I first ran this query as @error.message:"*WorkspaceAuthGate*" and got zero, which would have confirmed my original claim. Quoting disables wildcards in Datadog search. Unquoted returns 637. A nonsense-token control also returns 0 either way, so the control alone did not catch it — only re-running against a string known to be present did.

On the deploy: it is live but barely sampled yet. 1.50.7 still holds 3,484 of 3,611 sessions in the last day; the tagged workspace_auth_gate_initialization_failure events are all from 1.52.0, which has 63. So expect the tagged stream to converge toward the ~45/day the console path shows once the release saturates — worth re-checking in a couple of days rather than concluding anything from the current count.

Second question — agreed, and docs alone would not have held it. The convention regressed within a day of this PR merging: useSubscriptionActions.ts landed a fresh captureException with a hand-written error_type tag. So I made it mechanical rather than written: #15444

  • no-restricted-imports on captureException and datadogRum, with a message naming the replacement — catches namespace imports too
  • the four import * as Sentry files narrowed to named imports, so a future Sentry.captureException cannot hide under a disable comment
  • four legitimate importers left, all in src/platform/telemetry/, each with an explicit disable and a reason — one grep finds every direct-sink user
  • AGENTS.md Common Pitfalls entry and a src/AGENTS.md Error Handling section, which is where agents actually read conventions

Assigning that one to you since it is your question.

@AustinMroz AustinMroz added needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch core/1.51 Backport PRs for core 1.51 cloud/1.51 Backport PRs for cloud 1.51 labels Aug 20, 2026
@comfy-pr-bot

Copy link
Copy Markdown
Member

@christian-byrne Successfully backported to #15464

@comfy-pr-bot

Copy link
Copy Markdown
Member

@christian-byrne Successfully backported to #15465

@github-actions github-actions Bot removed the needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch label Aug 20, 2026
comfy-pr-bot added a commit that referenced this pull request Aug 20, 2026
… one reporter that reaches both sinks (#15464)

Backport of #15346 to `core/1.51`

Automatically created by backport workflow.

Co-authored-by: Christian Byrne <cbyrne@comfy.org>
comfy-pr-bot added a commit that referenced this pull request Aug 20, 2026
…h one reporter that reaches both sinks (#15465)

Backport of #15346 to `cloud/1.51`

Automatically created by backport workflow.

Co-authored-by: Christian Byrne <cbyrne@comfy.org>
@comfy-pr-bot comfy-pr-bot added the released:cloud PR has been released to cloud label Aug 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cloud/1.51 Backport PRs for cloud 1.51 core/1.51 Backport PRs for core 1.51 released:cloud PR has been released to cloud risk:R3 PR risk grade (advisory shadow check; grader-owned) size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants