Services In Cluster

URL:
https://<cluster-url>/services
Methods:
GET
Version Introduced:
10.1.1

Description

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:

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/admin/clusters/MapsCluster/services?f=json

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "services": [
    {
      "folderName": "<folderName>",
      "serviceName": "<serviceName>",
      "type": "<serviceType>",
      "description": "<description>"
    },
    {
      "folderName": "<folderName>",
      "serviceName": "<serviceName>",
      "type": "<serviceType>",
      "description": "<description>"
    },
  ]
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "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."
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.