GET – Service for IPMI SEL log
Use the GET method to retrieve properties in IPMI SEL log resource for a server.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/LogServices/SEL
Request body
None
Response body
Field | Type | Description | |||
---|---|---|---|---|---|
Id | String | Uniquely identifies the resource within the collection of the log services resource. Always set to “SEL”. | |||
Name | String | The name of the resource or array element. | |||
Description | String | This resource is used to represent a log service for a Redfish implementation. | |||
ServiceEnabled | Boolean | Indicate whether this service is enabled. | |||
DateTimeLocalOffset | String | The UTC offset that the current DateTime property value contains in the “+HH:MM” format. | |||
DateTime | String | The current DateTime (with offset) for the log service, used to set or read time. | |||
Actions | Object | Expanded. | |||
#LogService.ClearLog | Object | Using IPMI command to clear SEL record. Note Only for AuditLog, PlatformLog, and SEL. | |||
title | String | ClearLog | |||
target | String | /redfish/v1/Systems/1/LogServices/SEL/Actions/LogService.ClearLog |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.context": "/redfish/v1/$metadata#LogService.LogService",
"@odata.etag": "\"7A0A8B9A\"",
"@odata.id": "/redfish/v1/Systems/1/LogServices/SEL",
"@odata.type": "#LogService.v1_3_1.LogService",
"Actions": {
"#LogService.ClearLog": {
"target": "/redfish/v1/Systems/1/LogServices/SEL/Actions/LogService.ClearLog",
"title": "ClearLog"
}
},
"DateTime": "2024-12-04T05:05:15+00:00",
"DateTimeLocalOffset": "+00:00",
"Description": "This resource is used to represent a log service for a Redfish implementation.",
"Id": "SEL",
"Name": "LogService",
"ServiceEnabled": true
}