GET – Processor metric properties
Use the GET method to retrieve properties in a Processor Metric for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/ Processors/{1-N}/ProcessorMetrics
Request body
None
Response body
Field | Type | Description | |||
---|---|---|---|---|---|
Id | String | “ProcessorMetrics”. | |||
Name | String | "Processor Metrics". | |||
Description | String | This resource is used to represent a processor metrics for a Redfish implementation. | |||
ConsumedPowerWatt | Number | The consumed Power watt of this processor. | |||
TemperatureCelsius | Number | The temperature of the processor. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"Id": "ProcessorMetrics",
"TemperatureCelsius": 34,
"Name": "Processor Metrics",
"ConsumedPowerWatt": 24,
"Description": "This resource is used to represent a processor metrics for a Redfish implementation.",
"@odata.type": "#ProcessorMetrics.v1_1_0.ProcessorMetrics",
"@odata.id": "/redfish/v1/Systems/1/Processors/1/ProcessorMetrics",
"@odata.etag": "\"2c50f0353a3827e65b4\""
}
Give documentation feedback