Skip to content

feat(sveltekit)!: Enable orchestrion instrumentation on Cloudflare - #22967

Merged
chargome merged 2 commits into
developfrom
charlygomez/js-3205-sveltekit-cloudflare-orchestrion
Aug 4, 2026
Merged

feat(sveltekit)!: Enable orchestrion instrumentation on Cloudflare#22967
chargome merged 2 commits into
developfrom
charlygomez/js-3205-sveltekit-cloudflare-orchestrion

Conversation

@chargome

@chargome chargome commented Aug 3, 2026

Copy link
Copy Markdown
Member

Wire up orchestrion build-time instrumentation for the SvelteKit Cloudflare adapter, which was previously skipped. On workerd the channel subscribers can't be registered via require-patching, so the plugin injects a build-time marker that @sentry/cloudflare reads at runtime.

Ref: #22764

Wire up orchestrion build-time instrumentation for the SvelteKit Cloudflare
adapter, which was previously skipped. On workerd the channel subscribers can't
be registered via require-patching, so the plugin injects a build-time marker
that @sentry/cloudflare reads at runtime.

Ref: #22764

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@linear-code

linear-code Bot commented Aug 3, 2026

Copy link
Copy Markdown

JS-3205

@chargome chargome self-assigned this Aug 3, 2026
@chargome

chargome commented Aug 3, 2026

Copy link
Copy Markdown
Member Author

bugbot run

Comment thread packages/sveltekit/src/vite/sentryVitePlugins.ts
@github-actions

github-actions Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

size-limit report 📦

Path Size % Change Change
@sentry/browser 29.91 kB - -
@sentry/browser - with treeshaking flags 28.12 kB - -
@sentry/browser (incl. Tracing) 47.36 kB - -
@sentry/browser (incl. Tracing + Span Streaming) 47.36 kB - -
@sentry/browser (incl. Tracing, Profiling) 52.13 kB - -
@sentry/browser (incl. Tracing, Replay) 86.7 kB - -
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags 76.13 kB - -
@sentry/browser (incl. Tracing, Replay with Canvas) 91.41 kB - -
@sentry/browser (incl. Tracing, Replay, Feedback) 104.05 kB - -
@sentry/browser (incl. Feedback) 47.22 kB - -
@sentry/browser (incl. sendFeedback) 34.76 kB - -
@sentry/browser (incl. FeedbackAsync) 39.87 kB - -
@sentry/browser (incl. Metrics) 30.99 kB - -
@sentry/browser (incl. Logs) 31.22 kB - -
@sentry/browser (incl. Metrics & Logs) 31.9 kB - -
@sentry/react 31.73 kB - -
@sentry/react (incl. Tracing) 49.61 kB - -
@sentry/vue 34.98 kB - -
@sentry/vue (incl. Tracing) 49.34 kB - -
@sentry/svelte 29.94 kB - -
CDN Bundle 32.01 kB - -
CDN Bundle (incl. Tracing) 47.72 kB - -
CDN Bundle (incl. Logs, Metrics) 33.55 kB - -
CDN Bundle (incl. Tracing, Logs, Metrics) 49.08 kB - -
CDN Bundle (incl. Replay, Logs, Metrics) 72.9 kB - -
CDN Bundle (incl. Tracing, Replay) 85.35 kB - -
CDN Bundle (incl. Tracing, Replay, Logs, Metrics) 86.65 kB - -
CDN Bundle (incl. Tracing, Replay, Feedback) 91.14 kB - -
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) 92.46 kB - -
CDN Bundle - uncompressed 95.52 kB - -
CDN Bundle (incl. Tracing) - uncompressed 143.1 kB - -
CDN Bundle (incl. Logs, Metrics) - uncompressed 100.23 kB - -
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed 147.08 kB - -
CDN Bundle (incl. Replay, Logs, Metrics) - uncompressed 224.99 kB - -
CDN Bundle (incl. Tracing, Replay) - uncompressed 262.36 kB - -
CDN Bundle (incl. Tracing, Replay, Logs, Metrics) - uncompressed 266.33 kB - -
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 276.07 kB - -
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed 280.02 kB - -
@sentry/nextjs (client) 52.21 kB - -
@sentry/sveltekit (client) 47.81 kB - -
@sentry/core/server 80.01 kB - -
@sentry/core/browser 51.97 kB - -
@sentry/node 120.89 kB - -
@sentry/node/import (ESM hook with diagnostics-channel injection) 0 B added added
@sentry/node - without tracing 84.26 kB +0.01% +1 B 🔺
@sentry/aws-serverless 92.94 kB +0.01% +2 B 🔺
@sentry/cloudflare (withSentry) - minified 219.37 kB - -
@sentry/cloudflare (withSentry) 540.47 kB - -

View base workflow run

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@chargome

chargome commented Aug 3, 2026

Copy link
Copy Markdown
Member Author

bugbot run

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

✅ Bugbot reviewed your changes and found no new issues!

Comment @cursor review or bugbot run to trigger another review on this PR

Reviewed by Cursor Bugbot for commit 96effb7. Configure here.

@chargome
chargome marked this pull request as ready for review August 3, 2026 16:23
@chargome
chargome requested a review from a team as a code owner August 3, 2026 16:23
@chargome
chargome requested review from JPeer264, andreiborza, nicohrubec and s1gr1d and removed request for a team and s1gr1d August 3, 2026 16:23
sentryOrchestrionPlugin({
buildTimeInstrumentation: mergedOptions.buildTimeInstrumentation,
// On Cloudflare, subscribers are wired via a build-time marker the SDK reads at runtime;
...(mergedOptions.adapter === 'cloudflare' ? { injectChannelSubscribers: true } : {}),

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

q: Shouldn't we consolidate injectChannelSubscribers and buildTimeInstrumentation into one?

(not important for this PR though)

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

No, buildTimeInstrumentation is just the global opt-out and injectChannelSubscribers is changing how we register the subscribers. afaik we do not unify these two?

@chargome
chargome merged commit f9c83f8 into develop Aug 4, 2026
515 of 517 checks passed
@chargome
chargome deleted the charlygomez/js-3205-sveltekit-cloudflare-orchestrion branch August 4, 2026 07:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants