Skip to content

Commit 82aefbf

Browse files
committed
Apply suggestions from code review.
1 parent 96829db commit 82aefbf

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/container-apps/tutorial-scaling.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ az provider register --namespace Microsoft.OperationalInsights
104104

105105
Go to the [sample code repository](https://github.com/azure-samples/containerapps-albumapi-csharp) on GitHub to fork the repository. This article uses a C# code sample, but the programming language and environment doesn't matter for the reason of the tutorial.
106106

107-
Select the **Fork** button at the top of the album API repo to fork the repo to your account.
107+
Select the **Fork** button at the top of the album API repo to fork the repo to your account. This creates a repo with a name in the form of `https://github.com/<owner>/containerapps-albumapi-csharp`, where `<owner>` is your Github username. Save this repo name, as you'll use it in the next section.
108108

109109
## Create and deploy the container app
110110

@@ -118,7 +118,7 @@ If any of these resources already exist, the command uses the existing resources
118118

119119
Lastly, the command creates and deploys the container app using a public container image.
120120

121-
Replace the `<YOUR_GITHUB_REPOSITORY_NAME>` with your GitHub repository name in the form of `https://github.com/<owner>/containerapps-albumapi-csharp` or `<owner>/containerapps-albumapi-csharp`.
121+
Replace the `<YOUR_GITHUB_REPOSITORY_NAME>` with your GitHub repository name from the [previous section](#prepare-the-github-repository).
122122

123123
# [Bash](#tab/bash)
124124

@@ -272,7 +272,7 @@ For more information, see [az containerapp logs](/cli/azure/containerapp/logs).
272272

273273
# [Bash](#tab/bash)
274274

275-
Open a new bash shell using Windows Subsystem for Linux or a Linux virtual machine. Run the following command, replacing `<YOUR_CONTAINER_APP_FQDN>` with the fully qualified domain name for your container app that you saved from the [Create and deploy the container app](#create-and-deploy-the-container-app) section.
275+
Open a new bash shell. Run the following command, replacing `<YOUR_CONTAINER_APP_FQDN>` with the fully qualified domain name for your container app that you saved from the [Create and deploy the container app](#create-and-deploy-the-container-app) section.
276276

277277
```bash
278278
seq 1 50 | xargs -Iname -P5 curl "<YOUR_CONTAINER_APP_FQDN>"
@@ -346,27 +346,27 @@ In the first shell, where you ran the `az containerapp logs show` command, the o
346346
## View scaling in Azure portal (optional)
347347

348348
1. Sign in to the [Azure portal](https://portal.azure.com).
349-
1. In the *Search* bar at the top, enter **my-container-app**.
350-
1. In the search results, under *Resources*, select *my-container-app*.
351-
1. In the navigation bar at the left, expand *Application* and select *Scale and replicas*.
352-
1. In the *Scale and Replicas* page, select *Replicas*.
349+
1. In the **Search** bar at the top, enter **my-container-app**.
350+
1. In the search results, under *Resources*, select **my-container-app**.
351+
1. In the navigation bar at the left, expand **Application** and select **Scale and replicas**.
352+
1. In the *Scale and Replicas* page, select **Replicas**.
353353
1. Your container app now has more than one replica running.
354354

355355
:::image type="content" source="media/scale-app/azure-container-apps-scale-replicas.png" alt-text="Container app replicas.":::
356356

357357
You may need to select **Refresh** to see the new replicas.
358358

359-
1. In the navigation bar at the left, expand *Monitoring* and select *Metrics*.
360-
1. In the *Metrics* page, set *Metric* to *Requests*.
361-
1. Click *Apply splitting*.
362-
1. In the *Values* drop-down, check *Replica*.
363-
1. Click the blue checkmark icon to finish editing the splitting.
359+
1. In the navigation bar at the left, expand **Monitoring** and select **Metrics**.
360+
1. In the *Metrics* page, set **Metric** to **Requests**.
361+
1. Select **Apply splitting**.
362+
1. Expand the **Values** drop-down and check **Replica**.
363+
1. Select the blue checkmark icon to finish editing the splitting.
364364
1. The graph shows the requests received by your container app, split by replica.
365365

366366
:::image type="content" source="media/scale-app/azure-container-apps-scale-replicas-metrics-1.png" alt-text="Container app metrics graph.":::
367367

368-
1. By default, the graph scale is set to last 24 hours, with a time granularity of 15 minutes. Click the scale and change it to the last 30 minutes, with a time granularity of one minute. Click the *Apply* button.
369-
1. Left-click on the graph and drag to highlight the recent increase in requests received by your container app.
368+
1. By default, the graph scale is set to last 24 hours, with a time granularity of 15 minutes. Select the scale and change it to the last 30 minutes, with a time granularity of one minute. Select the **Apply** button.
369+
1. Select on the graph and drag to highlight the recent increase in requests received by your container app.
370370

371371
:::image type="content" source="media/scale-app/azure-container-apps-scale-replicas-metrics-2.png" alt-text="Container app metrics graph.":::
372372

0 commit comments

Comments
 (0)