Skip to content

Commit 1738d52

Browse files
authored
fix(profiling): remove page from not supported dotnet sdks (#14358)
1 parent 4b4614f commit 1738d52

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

docs/platforms/dotnet/common/profiling/index.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ title: Set Up .NET Profiling
33
sidebar_title: Profiling
44
description: "Learn how to enable profiling in your app if it is not already set up."
55
sidebar_order: 5000
6+
notSupported:
7+
- dotnet.uwp
8+
- dotnet.aws-lambda
9+
- dotnet.azure-functions-worker
10+
- dotnet.blazor-webassembly
11+
- dotnet.aspnet
12+
- dotnet.entityframework
13+
- dotnet.google-cloud-functions
614
---
715

816
<PlatformContent includePath="profiling/index/preface" />

docs/platforms/dotnet/common/profiling/troubleshooting/index.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
title: Troubleshooting
33
description: "Learn how to troubleshoot your profiling setup."
44
sidebar_order: 9000
5+
notSupported:
6+
- dotnet.uwp
7+
- dotnet.aws-lambda
8+
- dotnet.azure-functions-worker
9+
- dotnet.blazor-webassembly
10+
- dotnet.aspnet
11+
- dotnet.entityframework
12+
- dotnet.google-cloud-functions
513
---
614

715
### Profiles are not showing up

redirects.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1201,6 +1201,35 @@ const userDocsRedirects = [
12011201
source: '/product/ai-in-sentry/seer/seer-privacy-and-security',
12021202
destination: '/product/ai-in-sentry/ai-privacy-and-security/',
12031203
},
1204+
// .NET profiling guide redirects - consolidate to main profiling page
1205+
{
1206+
source: '/platforms/dotnet/guides/uwp/profiling/:path*',
1207+
destination: '/platforms/dotnet/profiling/',
1208+
},
1209+
{
1210+
source: '/platforms/dotnet/guides/aws-lambda/profiling/:path*',
1211+
destination: '/platforms/dotnet/profiling/',
1212+
},
1213+
{
1214+
source: '/platforms/dotnet/guides/azure-functions-worker/profiling/:path*',
1215+
destination: '/platforms/dotnet/profiling/',
1216+
},
1217+
{
1218+
source: '/platforms/dotnet/guides/blazor-webassembly/profiling/:path*',
1219+
destination: '/platforms/dotnet/profiling/',
1220+
},
1221+
{
1222+
source: '/platforms/dotnet/guides/aspnet/profiling/:path*',
1223+
destination: '/platforms/dotnet/profiling/',
1224+
},
1225+
{
1226+
source: '/platforms/dotnet/guides/entityframework/profiling/:path*',
1227+
destination: '/platforms/dotnet/profiling/',
1228+
},
1229+
{
1230+
source: '/platforms/dotnet/guides/google-cloud-functions/profiling/:path*',
1231+
destination: '/platforms/dotnet/profiling/',
1232+
},
12041233
];
12051234

12061235
/**

0 commit comments

Comments
 (0)