GET persistence/clusters/<clus_name>/stores/<stor_name>/durables/<dur_name>

This web method retrieves the status of a specific durable in a specific persistence store within a cluster.

  • <clus_name> in the URI is the cluster name.
  • <stor_name> in the URI is the store name.
  • <dur_name> in the URI is the durable name.

Example Requests

curl -X GET http://<host>:<port>/api/v1/persistence/clusters/<clus_name>/stores/<stor_name>/durables/<dur_name>

Example JSON Representation

{
"name": "dur1",
"store": "s1",
"cluster": "c1",
"matcher": "{}",
"template_name": "tmpl-std-store-fwd",
"client_id": 0,
"durable_id": 1,
"type": "standard-with-prefetch",
"dynamic": true,
"message_count": 0,
"message_size": 0,
"unacked_message_count": 0,
"unacked_message_size": 0,
"swap_message_count": 0,
"swap_message_size": 0,
"total_redeliveries": 0,
"expiration_count": 0,
"browser_count": 0,
"last_sub_remove_time": 4141,
"bytelimit": "",
"message_limit": 0,
"max_delivery": 0,
"durable_ttl": 0,
"message_ttl": 0,
"retention_time": 0
}