Skip To Content
ArcGIS Developer
Dashboard

Services In Cluster

Description

Note:

Clusters have been deprecated. The use of clusters for new deployments is strongly discouraged and existing deployments are advised to migrate away from use of clusters as part of ongoing maintenance and upgrades.

This resource lists all the services that are currently deployed to the cluster (of machines). A service deployed to a cluster runs on every server machine that is participating in the cluster.

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 services resource:

https://machine.domain.com/webadaptor/admin/clusters/MapsCluster/services?f=json

JSON Response syntax


{
  "services": [
    {
      "folderName": "<folderName>",
      "serviceName": "<serviceName>",
      "type": "<serviceType>",
      "description": "<description>"
    },
    {
      "folderName": "<folderName>",
      "serviceName": "<serviceName>",
      "type": "<serviceType>",
      "description": "<description>"
    },
  ]
}

JSON Response example


{
  "services": [
    {
      "folderName": "System",
      "serviceName": "CachingTools",
      "type": "GPServer",
      "description": "The CachingTools service is used by ArcGIS Server to create and manage Map, Globe and Image service caches."
    },
    {
      "folderName": "System",
      "serviceName": "PublishingTools",
      "type": "GPServer",
      "description": "The PublishingTools service is used by ArcGIS Server to publish service definition files as services."
    },
    {
      "folderName": "/",
      "serviceName": "SampleWorldCities",
      "type": "MapServer",
      "description": "The SampleWorldCities service is provided so you can quickly and easily
         preview the functionality of the GIS server. Click the thumbnail image to open
         in a web application. This sample service is optional and can be deleted."
    }
  ]
}