Skip To Content
ArcGIS Developer
Dashboard

Status (Data Store)

Description

This 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:

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
  }
}