From e8d94efaef6cbe31b00f6b8e7dcbb5d4d5095e8c Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Fri, 30 Jan 2026 11:23:23 +0100 Subject: [PATCH 1/2] document new bundles --- .../javascript/common/install/loader.mdx | 127 +++++++++++++++--- 1 file changed, 109 insertions(+), 18 deletions(-) diff --git a/docs/platforms/javascript/common/install/loader.mdx b/docs/platforms/javascript/common/install/loader.mdx index 0c25b01940076..862b7330db299 100644 --- a/docs/platforms/javascript/common/install/loader.mdx +++ b/docs/platforms/javascript/common/install/loader.mdx @@ -240,18 +240,6 @@ Please be aware that both of these options will add delay to your `fetch` calls Sentry supports loading the JavaScript SDK from a CDN. Generally we suggest using our Loader instead. If you _must_ use a CDN, see [Available Bundles](#available-bundles) below. -## Full Bundle - -To use all Sentry features, including error monitoring, tracing, [Session Replay](../../session-replay), and [User Feedback](../../user-feedback), you can use the following bundle: - -```html {tabTitle: CDN} - -``` - ## Performance Bundle To use Sentry for error and tracing, you can use the following bundle: @@ -300,6 +288,102 @@ If you only use Sentry for error monitoring, you can use the following bundle: > ``` +## Logs & Metrics Bundle + +To use Sentry for error monitoring, logs, and metrics, you can use the following bundle: + +```html {tabTitle: CDN} + +``` + +## Performance, Replay & Feedback Bundle + +To use Sentry for error monitoring, tracing, [Session Replay](../../session-replay), and [User Feedback](../../user-feedback), you can use the following bundle: + +```html {tabTitle: CDN} + +``` + +## Performance & Feedback Bundle + +To use Sentry for error monitoring, tracing, and [User Feedback](../../user-feedback), you can use the following bundle: + +```html {tabTitle: CDN} + +``` + +## Replay & Feedback Bundle + +To use Sentry for error monitoring, [Session Replay](../../session-replay), and [User Feedback](../../user-feedback), you can use the following bundle: + +```html {tabTitle: CDN} + +``` + +## Performance, Logs & Metrics Bundle + +To use Sentry for error monitoring, tracing, logs, and metrics, you can use the following bundle: + +```html {tabTitle: CDN} + +``` + +## Replay, Logs & Metrics Bundle + +To use Sentry for error monitoring, [Session Replay](../../session-replay), logs, and metrics, you can use the following bundle: + +```html {tabTitle: CDN} + +``` + +## Performance, Replay, Logs & Metrics Bundle + +To use Sentry for error monitoring, tracing, [Session Replay](../../session-replay), logs, and metrics, you can use the following bundle: + +```html {tabTitle: CDN} + +``` + +## Full Bundle with All Features + +To use all Sentry features including error monitoring, tracing, [Session Replay](../../session-replay), [User Feedback](../../user-feedback), logs, and metrics, you can use the following bundle: + +```html {tabTitle: CDN} + +``` + ## Usage & Configuration Once you've included the Sentry SDK bundle in your page, you can use Sentry in your own bundle: @@ -329,12 +413,19 @@ Sentry.init({ Our CDN hosts a variety of bundles: -- `bundle..js` is `@sentry/browser` with error monitoring only -- `bundle.tracing..js` is `@sentry/browser` with error and tracing -- `bundle.replay..js` is `@sentry/browser` with error and session replay -- `bundle.feedback..js` is `@sentry/browser` with error and user feedback -- `bundle.tracing.replay..js` is `@sentry/browser` with error, tracing and session replay -- `bundle.tracing.replay.feedback..js` is `@sentry/browser` with error, tracing, session replay and user feedback +- `bundle..js` - Base bundle with error monitoring only +- `bundle.tracing..js` - Error monitoring and tracing +- `bundle.replay..js` - Error monitoring and session replay +- `bundle.feedback..js` - Error monitoring and user feedback +- `bundle.tracing.replay..js` - Error monitoring, tracing, and session replay +- `bundle.tracing.feedback..js` - Error monitoring, tracing, and user feedback +- `bundle.replay.feedback..js` - Error monitoring, session replay, and user feedback +- `bundle.tracing.replay.feedback..js` - Error monitoring, tracing, session replay, and user feedback +- `bundle.logs.metrics..js` - Error monitoring, logs, and metrics +- `bundle.replay.logs.metrics..js` - Error monitoring, session replay, logs, and metrics +- `bundle.tracing.logs.metrics..js` - Error monitoring, tracing, logs, and metrics +- `bundle.tracing.replay.logs.metrics..js` - Error monitoring, tracing, session replay, logs, and metrics +- `bundle.tracing.replay.feedback.logs.metrics..js` - Error monitoring, tracing, session replay, feedback, logs, and metrics Additionally, each of the integrations in `@sentry/integrations` is available as a bundle named `..js`. From 564a7f1ce43dbe9fedb2bac8f3a4bf49bf5e5679 Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Fri, 30 Jan 2026 16:52:33 +0100 Subject: [PATCH 2/2] . --- docs/platforms/javascript/common/install/loader.mdx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/docs/platforms/javascript/common/install/loader.mdx b/docs/platforms/javascript/common/install/loader.mdx index 862b7330db299..38826dafe93d9 100644 --- a/docs/platforms/javascript/common/install/loader.mdx +++ b/docs/platforms/javascript/common/install/loader.mdx @@ -312,18 +312,6 @@ To use Sentry for error monitoring, tracing, [Session Replay](../../session-repl > ``` -## Performance & Feedback Bundle - -To use Sentry for error monitoring, tracing, and [User Feedback](../../user-feedback), you can use the following bundle: - -```html {tabTitle: CDN} - -``` - ## Replay & Feedback Bundle To use Sentry for error monitoring, [Session Replay](../../session-replay), and [User Feedback](../../user-feedback), you can use the following bundle: @@ -418,7 +406,6 @@ Our CDN hosts a variety of bundles: - `bundle.replay..js` - Error monitoring and session replay - `bundle.feedback..js` - Error monitoring and user feedback - `bundle.tracing.replay..js` - Error monitoring, tracing, and session replay -- `bundle.tracing.feedback..js` - Error monitoring, tracing, and user feedback - `bundle.replay.feedback..js` - Error monitoring, session replay, and user feedback - `bundle.tracing.replay.feedback..js` - Error monitoring, tracing, session replay, and user feedback - `bundle.logs.metrics..js` - Error monitoring, logs, and metrics