Skip to main content
GET
/
apps
/
{appId}
/
status
Status e Métricas
curl --request GET \
  --url https://dashboard.gratian.pro/api/v2/apps/{appId}/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "status": "running",
    "metrics": {
      "cpu": 123,
      "ram": 123,
      "storage": 123,
      "network": {
        "rx": 123,
        "tx": 123
      },
      "uptime": 123,
      "totalStorage": 123,
      "totalRam": 123
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

appId
string
required

Response

200 - application/json

Status da instância

success
boolean
Example:

true

data
object