GET – Processor properties
Use the GET method to retrieve properties of processor resource for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Processors/{1-N}
Request body
None
Response body
Field | Type | Description | |||
---|---|---|---|---|---|
Description | String | This resource is used to represent a processor for a Redfish implementation. | |||
TotalEnabledCores | Integer | The total number of enabled cores that this processor contains. | |||
Id | String | 1~{N}, N=1- number of processors. | |||
InstructionSet | String | null if Status.state is absent, otherwise, "x86-64". | |||
Manufacturer | String | The processor manufacturer. | |||
MaxSpeedMHz | Number | The maximum clock speed of the processor. | |||
Metrics | Link | The link to the metrics associated with this processor. | |||
Model | String | The product model of the processor. | |||
Name | String | "Processor {N}", N is the socket number of this processor. | |||
SerialNumber | String | Serial number of this processor. | |||
PartNumber | String | Part number of this processor. | |||
Version | String | It is the same as the Model property. | |||
ProcessorArchitecture | String | null if Status.state is absent, otherwise, "x86". | |||
ProcessorId | Object | Expanded. | |||
EffectiveFamily | String | The effective Family for this processor. | |||
EffectiveModel | String | The effective Model for this processor. | |||
IdentificationRegisters | String | The contents of the Identification Registers (CPUID) for this processor. | |||
Step | String | The Step value for this processor. | |||
ProtectedIdentificationNumber | String | The protected identification number for this processor. | |||
ProcessorType | String | “CPU” | |||
Socket | String | The socket or location of the processor. | |||
Status | Object | Contains the following elements | |||
State | String | “Enabled”: processor is present “Absent”: processor is not present | |||
Health | String | The health of this processor. Possible values are “OK”, “Warning” and “Critical”. Hide if Status.state is absent. | |||
TotalCores | Number | The total number of cores contained in this processor. | |||
TotalThreads | Number | The total number of execution threads supported by this processor. | |||
Location | Object | The location of the processor. | |||
PartLocation | Object | The part location within the placement. | |||
LocationOrdinalValue | Integer | The number that represents the location of the part. If LocationType is `slot` and this unit is in slot 2, the LocationOrdinalValue is 2. | |||
LocationType | String | The type of location of the part, such as slot, bay and socket. Here hard code to “Socket”. | |||
ServiceLabel | String | The label of the part location, such as a silk-screened name or a printed label. | |||
TDPWatts | Integer | The nominal Thermal Design Power (TDP) in watts. | |||
Links | Object | Expanded. | |||
Chassis | Link | /redfish/v1/Chassis/1/ |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.context": "/redfish/v1/$metadata#Processor.Processor",
"@odata.etag": "\"FE331BF2\"",
"@odata.id": "/redfish/v1/Systems/1/Processors/1",
"@odata.type": "#Processor.v1_14_0.Processor",
"Description": "This resource is used to represent a processor for a Redfish implementation.",
"Id": "1",
"InstructionSet": "x86-64",
"Links": {
"Chassis": {
"@odata.id": "/redfish/v1/Chassis/1"
}
},
"Location": {
"PartLocation": {
"LocationOrdinalValue": 0,
"LocationType": "Socket",
"ServiceLabel": "CPU 1"
}
},
"Manufacturer": "Intel(R) Corporation",
"MaxSpeedMHz": 3800,
"Metrics": {
"@odata.id": "/redfish/v1/Systems/1/Processors/1/ProcessorMetrics"
},
"Model": "Intel(R) Xeon(R) 6760P",
"Name": "Processor 1",
"Oem": {
...
}
},
"PartNumber": "UNKNOWN",
"ProcessorArchitecture": "x86",
"ProcessorId": {
"EffectiveFamily": "0x0006",
"EffectiveModel": "0x00AD",
"IdentificationRegisters": "BFEBFBFF000A06D1",
"ProtectedIdentificationNumber": "647BE0BFDD73947C",
"Step": "0x0001"
},
"ProcessorType": "CPU",
"SerialNumber": "647BE0BFDD73947C",
"Socket": "CPU 1",
"Status": {
"Health": "OK",
"State": "Enabled"
},
"TDPWatts": 330,
"TotalCores": 64,
"TotalEnabledCores": 64,
"TotalThreads": 128,
"Version": "Intel(R) Xeon(R) 6760P"
}