Skip to main content

GET – BMC Maintenance event log entries

Use the GET method to retrieve properties in Maintenance log entries for a server.

Request URL

GET https://<BMC_IPADDR>/redfish/v1/Systems/1/LogServices/MaintenanceLog/Entries/Z

Request body

None

Response body

FieldTypeDescription

Id

String

Uniquely identifies the resource within the collection of the log entries.

Name

String

The name of the resource or array element. Always set to “LogEntry”.

Description

String

A collection of Platform LogEntry resource instances.

Severity

String

null

Created

String

The time the log entry was created.

EntryType

String

The type of log entry. Always set to "OEM".

OemRecordFormat

String

If the entry type is OEM, this will contain more information about the record format from the OEM. Always set to Lenovo.

Message

String

The actual Log Entry.

EventGroupId

String

The identifier to correlate events come from a same cause.

Status code

HTTP Status CodeError Message ID
500InternalError

Example

The following example JSON response is returned:

{
"@odata.context": "/redfish/v1/$metadata#LogEntry.LogEntry",
"@odata.etag": "\"C5CB9B84\"",
"@odata.id": "/redfish/v1/Systems/1/LogServices/MaintenanceLog/Entries/1",
"@odata.type": "#LogEntry.v1_13_0.LogEntry",
"Created": "2024-12-03T20:35:54+00:00",
"Description": "This resource is used to represent a log entry for log services for a Redfish implementation.",
"EntryType": "Oem",
"EventGroupId": 0,
"Id": "1",
"Message": "Backup BMC firmware is updated to IHX407Y by Redfish.",
"Name": "LogEntry",
"Oem": {
...
}
},
"OemRecordFormat": "Lenovo",
"Severity": null
}