Returns bind operation counts

get

/oid/metrics/api/v1/counts/operations/bind

Returns total number of bind operations per time interval.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

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

400 Response

Bad Request

500 Response

Internal Server Error
Back to Top

Examples

This example retrieves total number of bind operations. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

The following shows example of cURL:

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

curl  -H "Content-Type: application/json"  -X GET  -u username:password
https://pseudo.com/oid/metrics/api/v1/counts/operations/bind?failed=true

curl  -H "Content-Type: application/json"  -X GET  -u username:password
https://pseudo.com/oid/metrics/api/v1/counts/operations/bind?beginTime=20210707092419z

Example of GET Response Body

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


[
{"time":"20210707092419z","count":0,"instance":"/oid1/oid1/1"},
{"time":"20210707095419z","count":0,"instance":"/oid1/oid1/1"},
{"time":"20210707102419z","count":0,"instance":"/oid1/oid1/1"}
]
Back to Top