跳到主要内容

GET – BMC 诊断日志条目

使用 GET 方法检索服务器的诊断日志条目中的属性。

请求 URL

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

请求正文

响应正文

响应是包含以下参数的 JSON 对象:

字段类型描述

Id

字符串

如果数据类型为“Manager”,则此值为“FFDC”[1]

如果数据类型为“OS”,则此值为“FailureScreen”

Name

字符串

“FFDC”或“Failure Screen”

Created

字符串

创建日志条目的时间。

EntryType

字符串

日志条目的类型。始终设置为“Oem”。

OemRecordFormat

字符串

如果条目类型为 Oem,则将包含有关 OEM 中的记录格式的详细信息。始终设置为“Lenovo”。

Description

字符串

“This resource is used to represent a log entry for log services for a Redfish implementation.”

AdditionalDataSizeBytes

整数

FFDC 文件或故障屏幕快照的文件大小。

如果诊断数据不可用,则将其设置为 0。

AdditionalDataURI

字符串

供 XCC HTTPS 服务器用于保存诊断数据的 URI。

如果诊断数据不可用,则将其设置为 null。

DiagnosticDataType

字符串

如果是 XCC FFDC,则为“Manager”;

如果是“故障屏幕快照”,则为“OS”。

[1]“FFDC”是“首次故障数据收集”的缩写,又名 Lenovo BMC 诊断数据

状态代码

HTTP 状态代码错误消息 ID
500InternalError

示例

返回以下示例 JSON 响应:

{
"@odata.etag": "\"9d7b4a21075d359976ea0\"",
"Description": "A collection of DiagnosticLogEntry resource instances.",
"Members@odata.count": 2,
"Members": [
{
"@odata.etag": "\"34d175e8b88124292cd\"",
"Description": "This resource is used to represent a log entry for log services for a Redfish implementation.",
"OemRecordFormat": "Lenovo",
"@odata.context": "/redfish/v1/$metadata#LogEntry.LogEntry",
"DiagnosticDataType": "Manager",
"EntryType": "Oem",
"@odata.type": "#LogEntry.v1_11_0.LogEntry",
"Id": "FFDC",
"Name": "FFDC",
"AdditionalDataSizeBytes": 0,
"@odata.id": "/redfish/v1/Systems/1/LogServices/DiagnosticLog/Entries/FFDC",
"AdditionalDataURI": null
},
{
"@odata.etag": "\"3829a0d5b4002665519\"",
"Description": "This resource is used to represent a log entry for log services for a Redfish implementation.",
"OemRecordFormat": "Lenovo",
"@odata.context": "/redfish/v1/$metadata#LogEntry.LogEntry",
"DiagnosticDataType": "OS",
"EntryType": "Oem",
"@odata.type": "#LogEntry.v1_11_0.LogEntry",
"Id": "FailureScreen",
"Name": "Failure Screen",
"AdditionalDataSizeBytes": 0,
"@odata.id": "/redfish/v1/Systems/1/LogServices/DiagnosticLog/Entries/FailureScreen",
"AdditionalDataURI": null
}
],
"Name": "DiagnosticLogEntryCollection",
"@odata.type": "#LogEntryCollection.LogEntryCollection",
"@odata.id": "/redfish/v1/Systems/1/LogServices/DiagnosticLog/Entries",
"@odata.context": "/redfish/v1/$metadata#LogEntryCollection.LogEntryCollection"
}