You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`response_time_ms`|`avg` (average)<BR> `min` (minimum)<BR> `max` (maximum)<BR> `pxx` (percentile), xx can be 50, 90, 95, 99 | Integer value, representing number of milliseconds (ms). |`>` (greater than)<BR> `<` (less than) | Response time or elapsed time, in milliseconds. Learn more about [elapsed time in the Apache JMeter documentation](https://jmeter.apache.org/usermanual/glossary.html). |
59
-
|`latency_ms`|`avg` (average)<BR> `min` (minimum)<BR> `max` (maximum)<BR> `pxx` (percentile), xx can be 50, 90, 95, 99 | Integer value, representing number of milliseconds (ms). |`>` (greater than)<BR> `<` (less than) | Latency, in milliseconds. Learn more about [latency in the Apache JMeter documentation](https://jmeter.apache.org/usermanual/glossary.html). |
59
+
|`latency`|`avg` (average)<BR> `min` (minimum)<BR> `max` (maximum)<BR> `pxx` (percentile), xx can be 50, 90, 95, 99 | Integer value, representing number of milliseconds (ms). |`>` (greater than)<BR> `<` (less than) | Latency, in milliseconds. Learn more about [latency in the Apache JMeter documentation](https://jmeter.apache.org/usermanual/glossary.html). |
60
60
|`error`|`percentage`| Numerical value in the range 0-100, representing a percentage. |`>` (greater than) | Percentage of failed requests. |
61
61
|`requests_per_sec`|`avg` (average) | Numerical value with up to two decimal places. |`>` (greater than) <BR> `<` (less than) | Number of requests per second. |
62
62
|`requests`|`count`| Integer value. |`>` (greater than) <BR> `<` (less than) | Total number of requests. |
@@ -118,7 +118,7 @@ To specify fail criteria in the YAML configuration file:
118
118
failureCriteria:
119
119
- avg(response_time_ms) > 300
120
120
- percentage(error) > 50
121
-
- GetCustomerDetails: avg(latency_ms) >200
121
+
- GetCustomerDetails: avg(latency) >200
122
122
```
123
123
124
124
When you define a test criterion for a specific JMeter request, the request name should match the name of the JMeter sampler in the JMX file.
@@ -158,7 +158,7 @@ To specify fail criteria in the YAML configuration file:
158
158
failureCriteria:
159
159
- avg(response_time_ms) > 300
160
160
- percentage(error) > 50
161
-
- GetCustomerDetails: avg(latency_ms) >200
161
+
- GetCustomerDetails: avg(latency) >200
162
162
```
163
163
164
164
When you define a test criterion for a specific JMeter request, the request name should match the name of the JMeter sampler in the JMX file.
0 commit comments