/search/cb/appt/queue
Gets chargeback reports per queue.
Request
GET http://unravel-host
:3000/api/v1/search/cb/appt/queue?from={date}&to={date}
Path parameters
None.
Query parameters
Required parameters are highlighted
.
Name | Type | Description |
---|---|---|
| string | Start date. Format: |
| string | End date. Format: |
Response body
The response body contains one chargeback report per queue. Each report contains the fields shown in the table below.
Name | Type | Description |
---|---|---|
| string | App count. |
| string | App type ( |
| array | |
| integer | Memory usage in seconds. |
| integer | App count. |
| string | App type ( |
| integer | Vcore usage in seconds. |
Examples
Request:
curl -X GET "http://myserver.com:3000/api/v1/search/cb/appt/queue?from=1536676860&to=1536763260" -H "accept: application/json" -H "Authorization: JWT token
"
Response:
{ "cb": [ { "count": 27, "v1": "mr", "cb": [ { "ms": 1974235, "count": 27, "v2": "root.users.root", "vs": 798 } ] } ] }