diff --git a/docs/platforms/javascript/common/install/loader.mdx b/docs/platforms/javascript/common/install/loader.mdx
index 0c25b01940076..38826dafe93d9 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,90 @@ 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}
+
+```
+
+## 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 +401,18 @@ 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.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`.