Skip to main content

List Available Statistics for a Category

This Eggplant Performance Analyzer REST method lists available statistics for a category. 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>

HTTP Method

GET: Lists available statistics for a category.

Response Parameters

ParameterTypeDescription
statTypesobjectList available statistics for a category.

Example Request

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

Example Response

{
"statTypes": {
"Concurrency": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Concurrency",
"Count": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Count",
"Percentiles": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Percentiles",
"Rate": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Rate",
"Response Time": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201/Test%201/1/analysis_views/View%201/data/Transactions/Response%20Time"
}
}