Skip To Content
ArcGIS Developer
Dashboard

Compute Platform Status

Description

The status resource allows you to view the status of the ComputePlatform service.

Request parameters

ParameterDetails
f

The response format. The default response format is html.

Values: html | json | pjson

Example usage

Below is a sample request URL for the status resource:

https://machine.domain.com/webadaptor/admin/system/platformservices/f44d878f-1341-4444-aa1d-53597f6756c3/status?f=json

JSON Response example

At 10.7, this operation now returns property information for totalCoresAvailable and minMemoryAvailable, which specify the total amount of cores on the machine, and the amount of available memory, respectively. See Update Server Properties for more information on how to configure server properties.


{
  "configuredState": "STARTED",
  "details": [
    {
      "machine": "MACHINE.DOMAIN.COM",
      "realtimeState": "STARTED"
    }
  ],
  "properties": {
    "totalCoresAvailable": 6.0,
    "minMemoryAvailable": 104796.0
  }
}