Status (Data Store)

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

ParameterDetails

f

The response format. The default format is html.

Values: html | json | pjson

Example usage

The following is a sample request URL used to access the status resource:

Use dark colors for code blocksCopy
1
https://organization.domain.com/context/admin/data/f305883d-6734-432c-b4c4-b76f795e25f7/status?f=pjson

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  "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
  }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.