Summary Information for an Analysis View
This Eggplant Performance Analyzer REST method returns the summary information for a specified analysis view. You use the following URL with a GET HTTP method as described here.
URL
/analyzer/api/1.0/<workspace>/<project>/<series>/<test>/<run number>/analysis_views/<view>/summary
HTTP Method
GET: Gets the summary information for a specified analysis view.
Response Parameters
Parameter | Type | Description |
---|---|---|
endTime | string | The end time of the analysis view. |
eventSampleTime | number | The number of events included in the analysis view. |
includeFailedTimings | boolean | Whether or not failed timings were included in the analysis view. |
measurementSampleSize | number | The number of measurements included in the analysis view. |
startTime | string | The start time of the analysis view. |
timingSampleSize | number | The number of timings included in the analysis view. |
Example Request
http:/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/summary
Example Response
{
"endTime": "Fri, 01 Jan 2016 00:00:00 GMT",
"eventsSampleSize": 100000,
"includeFailedTimings": false,
"measurementsSampleSize": 100000,
"startTime": "Sat, 03 Jan 2015 00:00:00 GMT",
"timingsSampleSize": 100000
}