Configuration (Overview)

URL:
https://<root>/overview/config
Methods:
GET
Required Capability:
Access allowed with the "Security and infrastructure" privilege
Version Introduced:
10.9

Description

The config resource returns a list of resource types that correspond with the Overview page of ArcGIS Enterprise Manager. Each JSON object contains the default updateIntervalMin property for each resource type that specifies the interval (in minutes) when information, such as health and status updates, for each type will be pulled and cached. Resource types that have an update interval of 0 won't have their information cached and instead return information in real time when the overview resource is called by Enterprise Manager. The default values for updateIntervalMin can be modified through the Update operation. The cached and real-time information for each resource can be viewed by calling the Overview resource.

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 config resource page:

Use dark colors for code blocksCopy
1
https://organization.domain.com/context/admin/overview/config?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
{
  "configs": [
    {
      "updateIntervalMin": 0,
      "id": "d52fe0a1-c853-4a71-a870-aaf86033474e",
      "type": "criticalLogs"
    },
    {
      "updateIntervalMin": 1,
      "id": "d9269ba4-d6df-444f-934c-1c5ed9c2f629",
      "type": "systemServices"
    },
    {
      "updateIntervalMin": 1,
      "id": "0173c590-78d3-4372-af87-952a8fe42739",
      "type": "utilityServices"
    },
    {
      "updateIntervalMin": 1,
      "id": "9a575de7-90de-45d6-b3b3-61d9640d65d7",
      "type": "dataStores"
    }
  ]
}

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