This controller is responsible for handling cloud benchmark tests like sysbench
Returns sysbench results only. Not Not supported yet
code | condition |
---|---|
200 | Successful query |
401 | Bad credentials |
media type | data type |
---|---|
application/json | array of BenchmarkResult (JSON) |
application/xml | list of benchmarkResult (XML) |
GET /user/v1.0/benchmark/ Accept: application/json
HTTP/1.1 200 Looks Good
Content-Type: application/json
[ {
"start" : 12345,
"vmType" : "...",
"host" : "147.228.242.58",
"delta" : 12345,
"cloudDeploymentDomain" : "us-east-1",
"end" : 12345,
"owner" : "user1",
"id" : "58e3946e0fb4f562d84ba1ad",
"timestamp" : 1499793079011
} ]
Deletes all entries. Use with caution !
code | condition |
---|---|
200 | Successful delete |
401 | Bad credentials |
media type | data type |
---|---|
application/json | string (JSON) |
application/xml | string (XML) |
DELETE /user/v1.0/benchmark/all Accept: application/json
HTTP/1.1 200 Looks Good
Content-Type: application/json
...
Returns the ids of stored objects. Empty list if non stored
code | condition |
---|---|
200 | Successful query |
401 | Bad credentials |
media type | data type |
---|---|
application/json | array of string (JSON) |
application/xml | list of string (XML) |
GET /user/v1.0/benchmark/ids Accept: application/json
HTTP/1.1 200 Looks Good
Content-Type: application/json
...
Deletes object
name | type | description | constraints |
---|---|---|---|
id | path | required |
code | condition |
---|---|
200 | Successful delete |
404 | Non existing id |
401 | Bad credentials |
media type | data type |
---|---|
application/json | string (JSON) |
application/xml | string (XML) |
DELETE /user/v1.0/benchmark/{id} Accept: application/json
HTTP/1.1 200 Looks Good
Content-Type: application/json
...
Returns a BenchmarkResult
name | type | description | constraints |
---|---|---|---|
id | path | required |
code | condition |
---|---|
404 | BenchmarkResult not found |
200 | BenchmarkResult exists |
401 | Bad credentials |
media type | data type |
---|---|
application/json | BenchmarkResult (JSON) |
application/xml | benchmarkResult (XML) |
GET /user/v1.0/benchmark/{id} Accept: application/json
HTTP/1.1 200 Looks Good
Content-Type: application/json
{
"start" : 12345,
"vmType" : "...",
"host" : "147.228.242.58",
"delta" : 12345,
"cloudDeploymentDomain" : "us-east-1",
"end" : 12345,
"owner" : "user1",
"id" : "58e3946e0fb4f562d84ba1ad",
"timestamp" : 1499793079011
}