Virtual User Group Settings in a Test Run
This Eggplant Performance Analyzer REST method returns setting information about a specified virtual user (VU) group in a 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>/vu_groups
HTTP Method
GET: Gets setting information about a specified VU group in a test run.
Response Parameters
Parameter | Type | Description |
---|---|---|
<VU group name> | object | Settings for the VU group. |
Example Request
http:/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/vu_groups
Example Response
{
"VU Group 1": {
"emptyPausePolicy": false,
"globalRampup": true,
"initialDelay": "00:10:00",
"iterationDelay": "00:01:00",
"iterationOption": "Count",
"iterationTime": "00:10:00",
"largestDelta": "00:10:00",
"maxFailures": 5,
"numberOfIterations": 10,
"pace": false,
"pauseFactor": 100,
"pauseHigh": "00:10:00",
"pauseLow": "00:10:00",
"pausePolicy": "pausePolicy",
"rampupInterval": "00:10:00",
"smallestDelta": "00:10:00",
"warmupIterations": 0,
"wobbleHigh": "00:10:00",
"wobbleLow": "00:10:00"
}
}