Skip to main content

Series for a Series Type

This Eggplant Performance Analyzer REST method lists the series available for a series type. 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>/data/<category>/<statistic>/<series type>

HTTP Method

GET: Lists available series for a series type.

Response Parameters

ParameterTypeDescription
chartSeriesobjectThe names and URLs of all the available series.

Example Request

http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Percentiles/Timing

Example Response

{
"chartSeries": {
"<COMBINED>": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Percentiles/Timing/%3CCOMBINED%3E",
"Login": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Percentiles/Timing/Login",
"Logout": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Percentiles/Timing/Logout",
"Search": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Percentiles/Timing/Search"
}
}