- URL:
- https://<root>/data/<datastoreID>/status
- Methods:
GET
- Required Capability:
- Access allowed only with the Publisher role
- Version Introduced:
- 10.9
Description
The status
resource returns health information for a relational data store, as well as information regarding the data store's disk space and memory.
Request parameters
Parameter | Details |
---|---|
| The response format. The default format is Values: |
Example usage
The following is a sample request URL used to access the status
resource:
https://organization.domain.com/context/admin/data/f305883d-6734-432c-b4c4-b76f795e25f7/status?f=pjson
JSON Response example
{
"gis-rdbms-moz2f-primary": {
"totalDiskSpace": 704069,
"freeDiskSpace": 172538,
"totalMemory": 15032,
"freeMemory": 2199,
"role": "primary",
"isAcceptConnection": true,
"pgVersion": "12.4",
"sdeVersion": "10.8.1",
"replicationIsActive": true,
"replicationIsCurrent": true,
"replicationLastSegment": 0,
"isHealthy": true,
"numOfPods": 1
},
"isHealthy": true,
"gis-rdbms-moz2f-standby": {
"totalDiskSpace": 704069,
"freeDiskSpace": 172538,
"totalMemory": 15033,
"freeMemory": 649,
"role": "standby",
"isAcceptConnection": true,
"pgVersion": "12.4",
"sdeVersion": "10.8.1",
"numOfPods": 1
}
}