/apps/status/running
Gets a list of running apps.
Request
GET http://unravel-host
:3000/api/v1/apps/status/running
Path parameters
None.
Query parameters
None.
Response body
Name | Type | Description |
---|---|---|
| string | Timestamp in Unix epoch format |
| integer | Number of apps running |
| integer | Number of apps pending |
Examples
Request:
curl -X GET "http://http://myserver.com:3000/api/v1/apps/status/running" -H "accept: application/json" -H "Authorization: JWT token
"
Response body:
{ "date": 1561619001184, "appsRunning": 0, "appsPending": 0 }