GET – BMC Service Advisor 事件日志条目
使用 GET 方法检索服务器的 Service Advisor 日志条目中的属性。
请求 URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/LogServices/SaLog/Entries
请求正文
无
响应正文
响应是包含以下参数的 JSON 对象:
字段 | 类型 | 描述 | |||
---|---|---|---|---|---|
Id | 字符串 | 在日志条目集合中唯一标识该资源。 | |||
Name | 字符串 | 资源或数组元素的名称。始终设置为“LogEntry”。 | |||
Created | 字符串 | 创建日志条目的时间。 | |||
EntryType | 字符串 | 日志条目的类型。始终设置为“Oem”。 | |||
OemRecordFormat | 字符串 | 如果条目类型为 Oem,则将包含有关 OEM 中的记录格式的详细信息。始终设置为“Lenovo”。 | |||
Message | 字符串 | 实际日志条目。 | |||
Description | 字符串 | “A collection of Platform LogEntry resource instances.” |
状态代码
HTTP 状态代码 | 错误消息 ID |
---|---|
500 | InternalError |
示例
返回以下示例 JSON 响应:
{
"Members": [
{
"@odata.id": "/redfish/v1/Systems/1/LogServices/SaLog/Entries/1",
"Id": "1",
"EntryType": "Oem",
"Name": "LogEntry",
"Severity": "OK",
"Created": "2020-06-05T06:26:00Z",
"Oem": {
"Lenovo": {
"EventSeverity": "INFO",
"CaseNumber": "N/A",
"EventStatus": "Pending"
}
},
"EventId": "FQXSPSS4004I",
"OemRecordFormat": "Lenovo",
"Message": "Test Call Home Generated by user USERID.",
"@odata.etag": "\"38fc1e1486a128a43c3\"",
"@odata.type": "#LogEntry.v1_5_0.LogEntry",
"Description": "This resource is used to represent a log entry for log services for a Redfish implementation."
}
],
"@odata.type": "#LogEntryCollection.LogEntryCollection",
"@odata.id": "/redfish/v1/Systems/1/LogServices/SaLog/Entries",
"Members@odata.count": 1,
"@odata.etag": "\"64b7bffdea2a25aff8f\"",
"Name": "LogEntryServiceAdvisorLogEntryCollection",
"Description": "A collection of LogEntryServiceAdvisorLogEntry resource instances."
}
提供反馈