GET persistence/clusters/clus_name/quorum

The web method GET persistence/clusters/clus_name/quorum retrieves a collection of persistence quorum status objects within a specific cluster.

clus_name in the URI is the cluster name.

Example Requests

curl -X GET http://host:port/api/v1/persistence/clusters/clus_name/quorum

Example JSON Representation

{
  "set_name": "_setA",
  "have_quorum": true,
  "leader": "default_ftls14",
  "max_member_count": 3,
  "min_member_count": 2,
  "current_member_count": 3,
  "errors": [],
  "members_in_quorum": [
    "default_ftls12",
    "default_ftls13",
    "default_ftls14"
  ],
  "members_not_in_quorum": []
}