Get Top 5 largest servers
Select
SaaS
Customer Managed
API to fetch the top 5 largest servers in the commcell.
The 5 largest servers in the environment, based on the total application size of every agent on the server.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- cacheId string
Report dataset cache Id
- offset integer
Denotes the starting point or index from which the requested data begins
- limit integer
Total number of records in the response
- totalRecordCount integer
Total Records in the response
columns object[]
List of columns in the dataset
name stringColumn Name
dataField stringData field name
displayName stringDisplay Name of the column
type stringData type
precision integerDecimal point precision
scale integer- recordsCount integer
Total Records in the rows
- records string[]
Rows containing the output
- failures object
- warnings object
{
"cacheId": "string",
"offset": 0,
"limit": 0,
"totalRecordCount": 0,
"columns": [
{
"name": "string",
"dataField": "string",
"displayName": "string",
"type": "string",
"precision": 0,
"scale": 0
}
],
"recordsCount": 0,
"records": [
"string"
],
"failures": {},
"warnings": {}
}
{
"cacheId": "eb8cf79616424128b6e96b101ad051e7",
"offset": 0,
"limit": 0,
"totalRecordCount": 5,
"columns": [
{
"name": "sys_rowid",
"dataField": "sys_rowid",
"displayName": "$row_number$",
"type": "Long",
"precision": 64,
"scale": 0
},
{
"name": "Data Source",
"dataField": "Data Source",
"displayName": "Data Source",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "Client ID",
"dataField": "Client ID",
"displayName": "Client ID",
"type": "Integer",
"precision": 32,
"scale": 0
},
{
"name": "Client Name",
"dataField": "Client Name",
"displayName": "Client Name",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "Application Size GB",
"dataField": "Application Size GB",
"displayName": "Application Size GB",
"type": "Decimal",
"precision": 21,
"scale": 3
},
{
"name": "Last Backup Time",
"dataField": "Last Backup Time",
"displayName": "Last Backup Time",
"type": "TimeStamp",
"precision": 26,
"scale": 6
}
],
"recordsCount": 5,
"records": [
[
1,
"bdcsrvtest05",
2,
"bdcsrvtest05",
205.72,
"Dec 4, 2023, 09:01:15 PM"
],
[
2,
"bdcsrvtest05",
4181,
"IBM-WIN",
38.15,
"Jun 5, 2023, 12:20:58 PM"
],
[
3,
"bdcsrvtest05",
3115,
"unixclient-2-webconsole",
13.82,
"Dec 2, 2023, 04:17:31 PM"
],
[
4,
"bdcsrvtest05",
4034,
"bdcnwtest1",
11.25,
"Dec 5, 2023, 02:02:25 AM"
],
[
5,
"bdcsrvtest05",
4541,
"NAS4",
5,
"Dec 5, 2023, 02:02:37 AM"
]
],
"failures": {},
"warnings": {}
}
Loading...