From 8987e578fd6be6e41c8dd22e17af5ab1f67b7b52 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 27 Jun 2025 21:03:18 +0000 Subject: [PATCH] Add Bun, Deno, and Cloudflare to unsupported platforms for tracing Co-authored-by: aprasad --- .../tracing/instrumentation/automatic-instrumentation.mdx | 3 +++ docs/platforms/javascript/guides/bun/index.mdx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/tracing/instrumentation/automatic-instrumentation.mdx b/docs/platforms/javascript/common/tracing/instrumentation/automatic-instrumentation.mdx index 1b19f192405b12..086a8329d6a7de 100644 --- a/docs/platforms/javascript/common/tracing/instrumentation/automatic-instrumentation.mdx +++ b/docs/platforms/javascript/common/tracing/instrumentation/automatic-instrumentation.mdx @@ -4,6 +4,9 @@ description: "Learn what spans are captured after tracing is enabled." sidebar_order: 10 notSupported: - javascript.cordova + - javascript.deno + - javascript.cloudflare + - javascript.bun --- diff --git a/docs/platforms/javascript/guides/bun/index.mdx b/docs/platforms/javascript/guides/bun/index.mdx index 278ab78f34b442..5fd3d1203e8352 100644 --- a/docs/platforms/javascript/guides/bun/index.mdx +++ b/docs/platforms/javascript/guides/bun/index.mdx @@ -56,7 +56,7 @@ Sentry.init({ }); ``` -Once you set a `tracesSampleRate`, performance instrumentation is automatically enabled for you. See Automatic Instrumentation to learn about all the things that the SDK automatically instruments for you. +Once you set a `tracesSampleRate`, performance instrumentation is automatically enabled for you. You can also manually capture performance data - see Custom Instrumentation for details.