GET persistence/zones/<zone_name>/stores/<stor_name>/durables/<dur_name>
This web method retrieves the status of a specific durable in a specific persistence store within a zone.
- <zone_name> in the URI is the zone 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/zones/<zone_name>/stores/<stor_name>/durables/<dur_name>
Example JSON Representation
{
"name": "dur1",
"store": "SFM",
"cluster": "C1",
"matcher": "{\"absent_C1\":false}",
"template_name": "shdTemplate",
"client_id": 0,
"durable_id": 7,
"type": "shared",
"dynamic": true,
"message_count": 200,
"message_size": 47872
}