Skip to main content

Test Run Summary

This Eggplant Performance Analyzer REST method returns a summary of the test run. You use the following URL with a GET HTTP method as described here.

URL​

/analyzer/api/1.0/<workspace>/<project>/<series>/<test>/<run number>/summary

HTTP Method​

GET: Gets a summary of the test run.

Response Parameters​

ParameterTypeDescription
ErrorsnumberThe number of errors in the test run.
Failed TimingsnumberThe number of failed timings in the test run.
Failed TransactionsnumberThe number of failed transactions in the test run.
Import WarningsnumberThe number of import warnings in the test run.
MeasurementsnumberThe number of measurements in the test run.
Progress Points FailednumberThe number of failed progress points in the test run.
Progress Points PassednumberThe number of passed progress points in the test run.
RequestsnumberThe number of requests in the test run.
TimingsnumberThe number of timings in the test run.
TransactionsnumberThe number of transactions in the test run.
Virtual UsersnumberThe number of virtual users in the test run.
WarningsnumberThe number of warnings in the test run.

Example Request​

http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/summary

Example Response​

{
"Errors": 2000,
"Failed Timings": 0,
"Failed Transactions": 0,
"Import Warnings": 0,
"Measurements": 29100,
"Progress Points Failed": 0,
"Progress Points Passed": 0,
"Requests": 0,
"Timings": 0,
"Transactions": 29100,
"Virtual Users": 1,
"Warnings": 0
}