GET – BMC 审核事件日志条目
使用 GET 方法检索服务器的审核日志条目中的属性。
请求 URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/LogServices/AuditLog/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": [
{
"Message": "Undefined TPM_POLICY found",
"@odata.etag": "\"ejUxX1N0YW5kYXJkTG9nRW50cnkK1\"",
"MessageArgs": [],
"@odata.id": "/redfish/v1/Systems/1/LogServices/AuditLog/Entries/1",
"Description": "This resource is used to represent a log entry for log services for a Redfish implementation.",
"EntryType": "Oem",
"Name": "LogEntry",
"EventGroupId": 0,
"OemLogEntryCode": "UEFI",
"Oem": {
"Lenovo": {
"ReportingChain": "UEFI",
"IsLocalEvent": true,
"RawDebugLogURL": "",
"EventID@Redfish.Deprecated": "The property is deprecated. Please use EventId instead.",
"EventFlag": 0,
"AuxiliaryData": "",
"Source": "System",
"FailingFRU": [
{
"FRUSerialNumber": "",
"FRUNumber": ""
}
],
"TSLVersion": "0",
"RelatedEventID": "",
"Serviceable": "Not Serviceable",
"EventID": "0x0000000000000000",
"EventSequenceNumber": 1,
"EventType": 0,
"@odata.type": "#LenovoLogEntry.v1_0_0.AuditLogEntry",
"LenovoMessageID": "UEFI",
"AffectedIndicatorLEDs": [],
"TotalSequenceNumber": 1,
"CommonEventID": "FQXSFPU4051G",
"Hidden": false
}
},
"@odata.type": "#LogEntry.v1_5_0.LogEntry",
"OemRecordFormat": "Lenovo",
"Id": "1",
"Severity": "OK",
"EventId": "0x0000000000000000",
"Created": "2019-12-20T01:51:27.000+00:00"
},
...
]
"@odata.type": "#LogEntryCollection.LogEntryCollection",
"@odata.id": "/redfish/v1/Systems/1/LogServices/AuditLog/Entries",
"Members@odata.count": 188,
"@odata.etag": "\"601ae59a9185682d37fb812\"",
"Name": "LogEntryAuditLogEntryCollection",
"Description": "A collection of LogEntryAuditLogEntry resource instances."
}
提供反馈