Returns compare operation response time in micro seconds

get

/oid/metrics/api/v1/times/latencies/operations/compare

based on given criteria

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : CompareRespTime
Type: object
Show Source

400 Response

Bad Request

500 Response

Internal Server Error
Back to Top

Examples

This example retrieves compare operation's average response time in micro seconds. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

The following shows example of the cURL:


curl  -H "Content-Type: application/json"  -X GET  -u username:password
https://pseudo.com/oid/metrics/api/v1/times/latencies/operations/compare

Example of GET Response Body

The following example shows the contents of the response body in JSON format :


[
{"time":"20210707092419z","latency":1503,"instance":"/oid1/oid1/1"},
{"time":"20210707095419z","latency":1909,"instance":"/oid1/oid1/1"},
{"time":"20210707102419z","latency":1333,"instance":"/oid1/oid1/1"}
]
Back to Top