Clusters

URL:
https://<site-url>/clusters
Methods:
GET
Version Introduced:
10.1

Description

This resource returns a list of all the clusters created within your site. The Create Cluster operation lets you define a new cluster configuration.

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

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

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
{
  "clusters": [
    <cluster1>,
    <cluster2>,
    ...
  ]
}

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
25
26
{
  "clusters": [
    {
      "clusterName": "DevCluster",
      "clusterProtocol": {
        "type": "TCP",
        "tcpClusterPort": 4014
      },
      "machineNames": [
        "MACHINE1.DOMAIN.COM",
        "MACHINE2.DOMAIN.COM"
      ]
    },
    {
      "clusterName": "ProdCluster",
      "clusterProtocol": {
        "type": "TCP",
        "tcpClusterPort": 5014
      },
      "machineNames": [
        "MACHINE3.DOMAIN.COM",
        "MACHINE4.DOMAIN.COM"
      ]
    }
  ]
}

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