GET persistence/clusters/clus_name/stores

The web method GET persistence/clusters/clus_name/stores retrieves a collection of persistence store 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/stores

Example JSON Representation

{
  "stores": [{
      "name": "pstore",
      "cluster": "cluster",
      "store_leader": "pserver",
      "durable_count": 1,
      "message_count": 0,
      "message_size": 0,
      "swap_message_count": 0,
      "swap_message_size": 0,
      "bytelimit": "9999457"
  }]
}