Uh oh!
There was an error while loading. Please reload this page.
feat(tanstackstart-react): Filter noisy dev transactions - #21145
Conversation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Uh oh!
There was an error while loading. Please reload this page.
Patterns without the method prefix match both server transaction names (GET /node_modules/...) and browser resource span descriptions (/node_modules/...). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
These Vite dev paths account for the bulk of the noise (296+ resource.script spans per pageload from unbundled module serving). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Uh oh!
There was an error while loading. Please reload this page.
Only /node_modules/, /@id/, /@react-refresh/, and /@vite/ actually generate server-side http.server transactions in a real browser session. The rest (favicon.ico, /@tanstack-start/, /@fs/) are handled by Vite before reaching Node. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
There are 2 total unresolved issues (including 1 from previous review).
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit d5c230b. Configure here.
Uh oh!
There was an error while loading. Please reload this page.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Uh oh!
There was an error while loading. Please reload this page.

Vite dev server requests (
/node_modules/,/@id/,/@react-refresh,/@tanstack-start/) and/favicon.icogenerate noise. Filters them viaignoreSpansininit()so this works for both transactions and streamed spans.