GET /api/v1/data/devices/{id}/processors
Use this method to return processor information for a specific device.
Authentication
Authentication with username and password is required.
Resource URI
GET https://{orchestrator_server_IP}/api/v1/data/devices/{id}/processors
where {id} is the ID of the device. To obtain the device IDs, use GET /api/v1/data/devices.
Query parameters
None
Request body
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
404 | Not found | The resource cannot be found. A descriptive error message is returned in the response body. |
Response body
When the request is successful, the following attributes are returned. If the request fails, standard message attributes are returned (see Status messages).
Attributes | Type | Description | ||
---|---|---|---|---|
processors | Array of objects | Information about each processor in the device | ||
cores | Integer | Number of cores | ||
displayName | String | Display name | ||
family | String | Family | ||
healthState | String | Health state (translated) | ||
healthStateKey | String | Health state key | ||
manufacturer | String | Manufacturer | ||
maxSpeedMHZ | Integer | Maximum processor speed | ||
partNumber | String | Part number | ||
present | Boolean | |||
productVersion | String | Product version | ||
serialNumber | String | Serial number | ||
slot | Integer | Slot | ||
socket | String | Socket information For servers, this is the socket number (for example, ”Socket 1”). For scalable complexes, this is the node and socket number (for example, “Node 1 Socket 1”). | ||
speed | String | Speed | ||
tdpWatts | Integer | |||
_links | Object | Device URI (see Links) |
The following example is returned if the request is successful.
{
"processors": [{
"cores": 24,
"displayName": "AMD EPYC 9274F 24-Core Processor",
"family": "AMD_ZEN_PROCESSOR_FAMILY",
"healthState": "GOOD",
"healthStateKey": "GOOD",
"manufacturer": "Advanced Micro Devices, Inc.",
"maxSpeedMHZ": 4300,
"partNumber": "Unknown",
"present": false,
"productVersion": "AMD EPYC 9274F 24-Core Processor",
"serialNumber": "0x472391C8E4723800",
"slot": 1,
"socket": "CPU 1",
"speed": 4.05,
"tdpWatts": 320,
}],
"_links": {
"rel": "self",
"uri": "/api/v1/data/devices/2E9F10E5641511ED97CBB040AD2C7996-B65EC401D9B741F49736CFC9380791F4/processors"
}
}
Give documentation feedback