Skip to content

Commit 7dadeb8

Browse files
committed
Clarify Locust web interface usage in load testing guide
1 parent 410d614 commit 7dadeb8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

articles/python/get-started-app-chat-app-load-test-locust.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The load test is in the [Python chat app](get-started-app-chat-template.md) solu
4545

4646
## Run the test
4747

48-
1. Install the locust package for the load test:
48+
1. Install the Locust package, which is used to simulate concurrent users and generate load against your chat application:
4949

5050
```bash
5151
python -m pip install locust
@@ -57,14 +57,15 @@ The load test is in the [Python chat app](get-started-app-chat-template.md) solu
5757
locust ChatUser
5858
```
5959

60-
1. Open the running Locust website, such as `http://localhost:8089`.
60+
1. After Locust starts successfully, it launches a local web interface that you use to configure and monitor the load test. Open the running Locust website, such as `http://localhost:8089`.
6161
1. Enter the following values in the Locust website.
6262

6363
|Property|Value|
6464
|---|---|
6565
|Number of users|20|
6666
|Ramp up|1|
67-
|Host|`https://<YOUR-CHAT-APP-URL>.azurewebsites.net`|
67+
|Host|`https://<YOUR-CHAT-APP-URL>.azurewebsites.net` (the base URL of your deployed chat application)|
68+
6869

6970
:::image type="content" source="./media/get-started-app-chat-app-load-test-locust/locust-test-settings.png" alt-text="Screenshot that shows the Locust test with values filled in.":::
7071

0 commit comments

Comments
 (0)