GET – BMC 标准事件日志条目(适用于基于 Intel Purley 的系统)
使用 GET 方法检索服务器的标准日志条目中的属性。
请求 URL
注
在基于 Purley 的 Lenovo 系统中,标准事件日志条目由审核日志条目和平台日志条目组成,而在下一代的产品(如基于 Whitley 的系统)中,标准日志条目将不复存在,而是变为两个单独的日志条目,即“审核”(13.2.4)和“平台”(13.2.3)日志条目。
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/LogServices/StandardLog/Entries
请求正文
无
响应正文
响应是包含以下参数的 JSON 对象:
字段 | 类型 | 描述 | |||
---|---|---|---|---|---|
Id | 字符串 | 在日志条目集合中唯一标识该资源。 | |||
Name | 字符串 | 资源或数组元素的名称。始终设置为“LogEntry” | |||
Severity | 字符串 | 日志条目的严重性。 | |||
Created | 字符串 | 创建日志条目的时间。 | |||
EventId | 字符串 | 事件的唯一实例标识符。 | |||
EntryType | 字符串 | 日志条目的类型。始终设置为“Oem”。 | |||
EventGroupId | 整数 | 用于将同一原因的事件关联起来的标识符。始终设置为 0。 | |||
OemRecordFormat | 字符串 | 如果条目类型为 Oem,则将包含有关 OEM 中的记录格式的详细信息。始终设置为“Lenovo”。 | |||
OemLogEntryCode | 字符串 | 特定于 OEM 的条目代码。 | |||
Message | 字符串 | 实际日志条目。 | |||
MessageArgs | 数组 | 消息的参数。 | |||
Description | 字符串 | “A collection of Platform LogEntry resource instances.” |
状态代码
HTTP 状态代码 | 错误消息 ID |
---|---|
500 | InternalError |
示例
返回以下示例 JSON 响应:
{
"Members@odata.count": 86,
"Members": [
{
"Created": "2021-09-29T09:01:47.462+00:00",
"Oem": {
"Lenovo": {
"AuxiliaryData": "",
"Source": "Power",
"TSLVersion": "16",
"RelatedEventID": "",
"Hidden": false,
"EventID": "0x806f06080a01ff03",
"EventID@Redfish.Deprecated": "The property is deprecated. Please use EventId instead.",
"EventSequenceNumber": 1,
"LenovoMessageID": "DMTF0104",
"Serviceable": "Serviceable by Customer",
"CommonEventID": "FQXSPPW0007L",
"TotalSequenceNumber": 2,
"AffectedIndicatorLEDs": [
{
"LEDState": "Lit",
"LEDIdentifier": "85"
},
{
"LEDState": "Lit",
"LEDIdentifier": "0"
}
],
"FailingFRU": [
{
"FRUSerialNumber": "33",
"FRUNumber": ""
}
],
"LogType": "StardandLogEntry-Platform",
"EventType": 0,
"ReportingChain": "XCC",
"@odata.type": "#LenovoLogEntry.v1_0_0.StandardLogEntry",
"IsLocalEvent": true,
"RawDebugLogURL": "",
"EventFlag": 0
}
},
"@odata.etag": "\"ejUxX1N0YW5kYXJkTG9nRW50cnkK2\"",
"EventGroupId": 0,
"Description": "This resource is used to represent a log entry for log services for a Redfish implementation.",
"MessageArgs": [
"Power Supply 1"
],
"OemLogEntryCode": "DMTF0104",
"Message": "Power Supply 1 has a Configuration Mismatch.",
"Severity": "Critical",
"@odata.id": "/redfish/v1/Systems/1/LogServices/StandardLog/Entries/2",
"EntryType": "Oem",
"Id": "2",
"Name": "LogEntry",
"@odata.type": "#LogEntry.v1_6_0.LogEntry",
"OemRecordFormat": "Lenovo",
"EventId": "0x806f06080a01ff03"
},
…
],
"@odata.etag": "\"2eb23540698c7c2e2296868\"",
"Description": "A collection of LogEntryStandardLogEntry resource instances.",
"@odata.type": "#LogEntryCollection.LogEntryCollection",
"@odata.id": "/redfish/v1/Systems/1/LogServices/StandardLog/Entries",
"Name": "LogEntryStandardLogEntryCollection"
}
提供反馈