FRAMES | NO FRAMES | Description | Parameters | Response | Example |
URL: | http://server:port/arcgis/admin/clusters/<cluster>/machines |
---|---|
HTTP Method: | GET |
Parent Resource: | Cluster |
Supported Operations: | Add Machines To Cluster Remove Machines From Cluster |
This resource lists all the server machines that are currently participating in
the cluster. Each server machine listing is accompanied by its status indicating
whether the server machine is running or stopped.
The list of server machines participating in a cluster is dynamic as machines can be
added or removed.
Parameter | Description |
---|---|
f | The response format. The default response format is html. Values: html | json |
{
"machines": [
{
"configuredState": "<STARTED|STOPPPED>"
"realTimeState": "<STARTED|STOPPPED>"
"machineName": "<machine1>"
},
{
"configuredState": "<STARTED|STOPPPED>"
"realTimeState": "<STARTED|STOPPPED>"
"machineName": "<machine2>"
},...
}
{
"machines": [
{
"configuredState": "STARTED"
"realTimeState": "STARTED"
"machineName": "SERVER1.DOMAIN.COM"
},
{
"configuredState": "STOPPPED"
"realTimeState": "STOPPPED"
"machineName": "SERVER2.DOMAIN.COM"
}
}