GET scenario/result/{runId}/summary
Returns the scenario run summary
URL Parameters
Name | Description |
---|---|
runId | Id of scenario run |
Response body model example and description
{ "run_id": 1, "scenario_id": 2, "scenario_name": "sample string 3", "project_id": 4, "project_name": "sample string 5", "project_lead": "sample string 6", "test_instance_id": 7, "test_instance_name": "sample string 8", "test_period": "sample string 9", "duration": "sample string 10", "test_start": 11, "test_end": 12, "max_vu": 13, "total_throughput_bytes": 14, "average_throughput": 14.9, "total_hits": 16, "average_hits_per_second": 16.9, "total_url_calls": 18, "total_passed_url_calls": 19, "total_failed_url_calls": 20, "total_loops": 21, "total_passed_loops": 22, "total_failed_loops": 23, "total_passed_page_breaks": 24, "total_failed_page_breaks": 25, "total_passed_transactions": 26, "total_failed_transactions": 27, "failure_rate": 27.9, "failure_rate_limit": 28.9, "exception": "An exception was encountered during execution: {exception details...}" }
Name | Type | Description |
---|---|---|
run_id | Integer | |
scenario_id | Integer |
Scenario Id |
scenario_name | String |
Scenario Name |
project_id | Integer |
Project Id |
project_name | String |
Project Name |
project_lead | String |
Project Lead |
test_instance_id | Integer |
Test Instance Id |
test_instance_name | String |
Test Instance Name |
test_period | String |
The Start and End Date/Time of the test |
duration | String |
Total Duration |
test_start | Integer |
Test start in Unix time in ms |
test_end | Integer |
Test end in Unix time in ms |
max_vu | Integer |
Max number of VU during the test |
total_throughput_bytes | Integer |
Total (sum) of the throughput from all tests in Bytes |
average_throughput | Float |
Total (sum) throughput from all tests in the scenario in Bytes/sec |
total_hits | Integer |
Total (sum) of all HTTP Hits of all tests in the scenario |
average_hits_per_second | Float |
Average HTTP Hits per second for all tests in the scenario |
total_url_calls | Integer |
Total number of all url calls of all tests in the scenario |
total_passed_url_calls | Integer |
Total number of all passed url calls of all tests in the scenario |
total_failed_url_calls | Integer |
Total number of all failed url calls of all tests in the scenario |
total_loops | Integer |
Total number of loops of all tests in the scenario |
total_passed_loops | Integer |
Total number of all passed loops of all tests in the scenario |
total_failed_loops | Integer |
Total number of all failed loops of all tests in the scenario |
total_passed_page_breaks | Integer | |
total_failed_page_breaks | Integer | |
total_passed_transactions | Integer |
Total (sum) of all passed transactions of all tests in the Scenario |
total_failed_transactions | Integer |
Total (Sum) failed transactions of all tests in the Scenario |
failure_rate | Float |
Average Fail Rate in percentage = (Total Failed of Total Passed of all tests in the scenario) |
failure_rate_limit | Float |
Max failure rate limit in percentage |
exception | String |
Any exception that arose during the function call. In case no exception was thrown this will be an empty string. |