Skip to content

Commit 7d3ca8c

Browse files
authored
Merge pull request #126753 from yamgarcia/patch-1
Fix typos on reference-test-config-yaml.md"
2 parents e6dc717 + c8e1c11 commit 7d3ca8c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/load-testing/reference-test-config-yaml.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ A load test configuration uses the following keys:
3030
| `testPlan` | string | Y | | Reference to the test plan file.<br/><ul><li>If `testType: JMX`: relative path to the JMeter test script.</li><li>If `testType: Locust`: relative path to the Locust test script.</li><li>If `testType: URL`: relative path to the [requests JSON file](./how-to-add-requests-to-url-based-test.md).</li></ul> |
3131
| `engineInstances` | integer | Y | | Number of parallel test engine instances for running the test plan. Learn more about [configuring high-scale load](./how-to-high-scale-load.md). |
3232
| `configurationFiles` | array of string | N | | List of external files, required by the test script. For example, JMX fragment files, CSV data files, images, or any other data file.<br/>Azure Load Testing uploads all files in the same folder as the test script. In the JMeter script or the Locust script, only refer to external files using the file name, and remove any file path information. |
33-
| `failureCriteria` | object | N | | L oad test fail criteria. See [failureCriteria](#failurecriteria-configuration) for more details. |
33+
| `failureCriteria` | object | N | | Load test fail criteria. See [failureCriteria](#failurecriteria-configuration) for more details. |
3434
| `autoStop` | string or object | N | | Automatically stop the load test when the error percentage exceeds a value.<br/>Possible values:<br/>- `disable`: don't stop a load test automatically.<br/>- *object*: see [autostop](#autostop-configuration) configuration for more details. |
3535
| `properties` | object | N | | <ul><li>If `testType: JMX`: JMeter user property file references.</li><li>If `testType: Locust`: Locust configuration file references.</li></ul> See [properties](#properties-configuration) for more details. |
3636
| `zipArtifacts` | array of string| N | | Specifies the list of zip artifact files. For files other than the main test script and user properties for JMeter-based tests and Locust script and configuration files for Locust-based tests, if the file size exceeds 50 MB, compress them into a ZIP file. Ensure that the ZIP file remains below 50 MB in size. Only 5 ZIP artifacts are allowed with a maximum of 1000 files in each and uncompressed size of 1 GB. Only applies for `testType: JMX` and `testType: Locust`. |
@@ -42,7 +42,7 @@ A load test configuration uses the following keys:
4242
| `subnetId` | string | N | | Resource ID of the virtual network subnet for testing privately hosted endpoints. This subnet hosts the injected test engine VMs. For more information, see [how to load test privately hosted endpoints](./how-to-test-private-endpoint.md). |
4343
| `publicIPDisabled` | boolean | N | | Disable the deployment of a public IP address, load balancer, and network security group while testing a private endpoint. For more information, see [how to load test privately hosted endpoints](./how-to-test-private-endpoint.md). |
4444
| `regionalLoadTestConfig` | object | N | | Distribute load across regions to simulate user traffic from multiple regions. For more information, See [regional load test configuration](#regional-load-test-configuration) for more details. |
45-
| `referenceIdentities` | object | N | | List of managed identities used in the test for accessing the secrets from your Azure Key Vault, metrics for server-side failure criteria and authentication of your endpoints. See [referenceIentities](#referenceidentities-configuration) for more details. |
45+
| `referenceIdentities` | object | N | | List of managed identities used in the test for accessing the secrets from your Azure Key Vault, metrics for server-side failure criteria and authentication of your endpoints. See [referenceIdentities](#referenceidentities-configuration) for more details. |
4646

4747
### Load test configuration sample
4848

@@ -59,7 +59,7 @@ engineInstances: 1
5959
subnetId: /subscriptions/abcdef01-2345-6789-0abc-def012345678/resourceGroups/sample-rg/providers/Microsoft.Network/virtualNetworks/load-testing-vnet/subnets/load-testing
6060
configurationFiles:
6161
- 'sampledata.csv'
62-
- testfragment.jmx
62+
- 'testfragment.jmx'
6363
zipArtifacts:
6464
- bigdata.zip
6565
splitAllCSVs: True
@@ -78,7 +78,7 @@ keyVaultReferenceIdentity: /subscriptions/abcdef01-2345-6789-0abc-def012345678/r
7878
7979
### `failureCriteria` configuration
8080

81-
Test fail criteria enable you to define conditions to determine if a load test run was successful or not. If one or more fail criteria are met, the test gets a failed test result. Learn more about [using load test fail criteria](./how-to-define-test-criteria.md). You can define failure criteria on client metrics, such as response time, latency, etc., and on server-side metricc for your server-side app components.
81+
Test fail criteria enable you to define conditions to determine if a load test run was successful or not. If one or more fail criteria are met, the test gets a failed test result. Learn more about [using load test fail criteria](./how-to-define-test-criteria.md). You can define failure criteria on client metrics, such as response time, latency, etc., and on server-side metrics for your server-side app components.
8282

8383
#### Client metrics
8484

@@ -155,7 +155,7 @@ The following table describes the different fields in the `appComponents:` confi
155155
|---------------------|-------------|
156156
|`resourceId` | *Required.* The resource ID of app component on which the criteria should be applied. |
157157
|`resourceName` | *Optional.* The name of the resource to be monitored. |
158-
|`kind` | *Optional.* The kind of the resource to be monitired. |
158+
|`kind` | *Optional.* The kind of the resource to be monitored. |
159159
|`metrics` | *Required.* The list of metrics to be monitored for the app component. This contains the name, namespace, and aggregation for the metric. |
160160

161161
#### App Components configuration sample

0 commit comments

Comments
 (0)