From 92bf4d5b8fe28089a326a6d39219bfe96c95f89c Mon Sep 17 00:00:00 2001 From: Reinaldy Rafli Date: Sun, 8 Mar 2026 20:40:38 +0700 Subject: [PATCH] feat(platform-redirect): alert for unavailable platforms for automated instrumentation --- app/platform-redirect/page.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/platform-redirect/page.tsx b/app/platform-redirect/page.tsx index 62b5942080a1c..42df75cfbb95c 100644 --- a/app/platform-redirect/page.tsx +++ b/app/platform-redirect/page.tsx @@ -30,6 +30,8 @@ export default async function Page(props: { } const pathname = sanitizeNext(next); + const isTracingAutomatedInstrumentation = + pathname === '/tracing/instrumentation/automatic-instrumentation'; const rootNode = await getDocsRootNode(); const defaultTitle = 'Platform Specific Content'; let description = ''; @@ -149,6 +151,12 @@ export default async function Page(props: { return ( {platformInfo} + {isTracingAutomatedInstrumentation && ( + + This page lists only platforms with automated tracing instrumentation. Some + platforms may be omitted due to technical limitations. + + )}