Skip to main content

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

ParameterTypeDescription
endTimestringThe end time of the analysis view.
eventSampleTimenumberThe number of events included in the analysis view.
includeFailedTimingsbooleanWhether or not failed timings were included in the analysis view.
measurementSampleSizenumberThe number of measurements included in the analysis view.
startTimestringThe start time of the analysis view.
timingSampleSizenumberThe number of timings included in the analysis view.

Example Request

http://localhost:5000/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
}