Skip to main content

Add SUT Data to a Test Run

This Eggplant Performance Analyzer REST method adds System Under Test (SUT) data to a test run. You use the following URL with a POST HTTP method as described here.

URL​

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

HTTP Method​

POST: Adds SUT data to a test run.

Request Parameters​

ParameterTypeDescription
pathstringThe path of the file containing the SUT data.
formatstringThe format of the SUT data. Possible values are perfmon and sar.

Response Parameters​

None.

Example Request​

http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/add_sut_data
POST Data
{
"path": "C:/Performance Counter.big",
"format": "perfmon"
}

Example Response​

{}