Skip to content

Commit e602e9e

Browse files
authored
Merge pull request #292208 from mrm9084/RedirectTelemetry
Azure App Configuration Redirect Telemetry
2 parents aaf4c9e + 3e54a20 commit e602e9e

File tree

10 files changed

+21
-11
lines changed

10 files changed

+21
-11
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,16 @@
772772
"redirect_url": "/azure/azure-app-configuration/concept-experimentation",
773773
"redirect_document_id": false
774774
},
775+
{
776+
"source_path_from_root": "/articles/azure-app-configuration/use-variant-feature-flags.md",
777+
"redirect_url": "/azure/azure-app-configuration/howto-variant-feature-flags",
778+
"redirect_document_id": false
779+
},
780+
{
781+
"source_path_from_root": "/articles/azure-app-configuration/use-variant-feature-flags-aspnet-core.md",
782+
"redirect_url": "/azure/azure-app-configuration/howto-variant-feature-flags-aspnet-core",
783+
"redirect_document_id": false
784+
},
775785
{
776786
"source_path_from_root": "/articles/public-multi-access-edge-compute-mec/considerations-for-deployment.md",
777787
"redirect_url": "/previous-versions/azure/public-multi-access-edge-compute-mec/considerations-for-deployment",

articles/azure-app-configuration/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,9 @@
161161
- name: Use variant feature flags
162162
items:
163163
- name: Overview
164-
href: use-variant-feature-flags.md
164+
href: howto-variant-feature-flags.md
165165
- name: ASP.NET Core
166-
href: use-variant-feature-flags-aspnet-core.md
166+
href: howto-variant-feature-flags-aspnet-core.md
167167
- name: Enable Azure monitoring
168168
items:
169169
- name: Monitor App Configuration

articles/azure-app-configuration/use-variant-feature-flags-aspnet-core.md renamed to articles/azure-app-configuration/howto-variant-feature-flags-aspnet-core.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ ms.date: 12/18/2024
1313

1414
# Tutorial: Use variant feature flags in an ASP.NET Core application
1515

16-
In this tutorial, you use a variant feature flag to manage experiences for different user segments in an example application, *Quote of the Day*. You utilize the variant feature flag created in [Use variant feature flags](./use-variant-feature-flags.md). Before proceeding, ensure you create the variant feature flag named *Greeting* in your App Configuration store.
16+
In this tutorial, you use a variant feature flag to manage experiences for different user segments in an example application, *Quote of the Day*. You utilize the variant feature flag created in [Use variant feature flags](./howto-variant-feature-flags.md). Before proceeding, ensure you create the variant feature flag named *Greeting* in your App Configuration store.
1717

1818
## Prerequisites
1919

2020
* Ensure the [.NET CLI](/dotnet/core/tools) is installed on your machine.
21-
* Follow the [Use variant feature flags](./use-variant-feature-flags.md) tutorial and create the variant feature flag named *Greeting*.
21+
* Follow the [Use variant feature flags](./howto-variant-feature-flags.md) tutorial and create the variant feature flag named *Greeting*.
2222

2323
## Create an ASP.NET Core web app
2424

@@ -249,13 +249,13 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
249249
```
250250
1. Once the application is loaded, select **Register** at the top right to register a new user.
251251
252-
:::image type="content" source="media/use-variant-feature-flags-aspnet-core/register.png" alt-text="Screenshot of the Quote of the day app, showing Register.":::
252+
:::image type="content" source="media/howto-variant-feature-flags-aspnet-core/register.png" alt-text="Screenshot of the Quote of the day app, showing Register.":::
253253
254254
1. Register a new user named *[email protected]*.
255255
256256
1. Select the link **Click here to validate email** after entering user information.
257257
258-
:::image type="content" source="media/use-variant-feature-flags-aspnet-core/click-to-confirm.png" alt-text="Screenshot of the Quote of the day app, showing click to confirm.":::
258+
:::image type="content" source="media/howto-variant-feature-flags-aspnet-core/click-to-confirm.png" alt-text="Screenshot of the Quote of the day app, showing click to confirm.":::
259259
260260
1. Repeat the same steps to register a second user named *[email protected]*.
261261
@@ -264,15 +264,15 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
264264
265265
1. Select **Login** at the top right to sign in as [email protected].
266266
267-
:::image type="content" source="media/use-variant-feature-flags-aspnet-core/login.png" alt-text="Screenshot of the Quote of the day app, showing **Login**.":::
267+
:::image type="content" source="media/howto-variant-feature-flags-aspnet-core/login.png" alt-text="Screenshot of the Quote of the day app, showing **Login**.":::
268268
269269
1. Once logged in, you see a long greeting message for **[email protected]**
270270
271-
:::image type="content" source="media/use-variant-feature-flags-aspnet-core/long-variant.png" alt-text="Screenshot of the Quote of the day app, showing a long message for the user.":::
271+
:::image type="content" source="media/howto-variant-feature-flags-aspnet-core/long-variant.png" alt-text="Screenshot of the Quote of the day app, showing a long message for the user.":::
272272
273273
1. Click *Logout* and login as **[email protected]**, you see the simple greeting message.
274274
275-
:::image type="content" source="media/use-variant-feature-flags-aspnet-core/simple-variant.png" alt-text="Screenshot of the Quote of the day app, showing a simple message for the user.":::
275+
:::image type="content" source="media/howto-variant-feature-flags-aspnet-core/simple-variant.png" alt-text="Screenshot of the Quote of the day app, showing a simple message for the user.":::
276276
277277
## Next steps
278278

articles/azure-app-configuration/use-variant-feature-flags.md renamed to articles/azure-app-configuration/howto-variant-feature-flags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ In this tutorial, you create a web app named _Quote of the Day_. When the app is
7373
| Long | "I hope this makes your day!" | 25% |
7474

7575
2. Continue to the following instructions to use the variant feature flag in your application for the language or platform you're using.
76-
* [ASP.NET Core](./use-variant-feature-flags-aspnet-core.md)
76+
* [ASP.NET Core](./howto-variant-feature-flags-aspnet-core.md)

articles/azure-app-configuration/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ landingContent:
163163
- text: Roll out features to targeted audience
164164
url: howto-targetingfilter.md
165165
- text: Use variant feature flags
166-
url: use-variant-feature-flags.md
166+
url: howto-variant-feature-flags.md
167167
- linkListType: reference
168168
links:
169169
- text: .NET feature management

0 commit comments

Comments
 (0)