Analysis Views
These Eggplant Performance Analyzer REST methods are for working with analysis views. You use the following URL with a GET
HTTP method to return information about a specified analysis view, or the DELETE
HTTP method to delete a specified analysis view. The GET
method is shown first, followed by the DELETE
method.
URL
/analyzer/api/1.0/<workspace>/<project>/<series>/<test>/<run number>/analysis_views/<view>
HTTP Method
GET: Gets information about the specified analysis view.
Response Parameters
Parameter | Type | Description |
---|---|---|
create_report | string | The URL to use for creating a report for this analysis view. |
data | string | The URL to use to retrieve data from this analysis view. |
KPIs | string | The URL to use to retrieve KPI values for this analysis view. |
summary | string | The URL to use to get a summary of this analysis view, e.g., start and end times, sample sizes, etc. |
summary_data | string | The URL to use to retrieve summary statistics from this analysis view. |
Example Request
http:/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201
Example Response
{
"create_report": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/create_report",
"data": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data",
"kpis": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/kpis",
"summary": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/summary",
"summary_data": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/summary_data"
}
HTTP Method
DELETE: Deletes the specified analysis view.
Response Parameters
Parameter | Type | Description |
---|---|---|
analysis_views | object | The names and URLs of all the remaining analysis views in this test run. |
Example Request
http:/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201
Example Response
{
"analysis_views": {
"View 1": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201"
}
}