Querying Log Service Resource Collection Information
Function
This interface is used to query information about the current log service collection resources.
Syntax
Operation type: GET
URL: https://device_ip/redfish/v1/Systems/LogServices
Request header:
X-Auth-Token: auth_value
Request message body: None
Usage Guidelines
None
Example
Request:
GET https://10.10.10.10/redfish/v1/Systems/LogServices
Request header:
X-Auth-Token: auth_value
Request message body: None
{
"@odata.context": "/redfish/v1/$metadata#Systems/LogServices/$entity",
"@odata.id": "/redfish/v1/Systems/LogServices",
"@odata.type": "#LogServiceCollection.LogServiceCollection",
"Name": "LogService Collection",
"Members@odata.count": 4,
"Members": [
{
"@odata.id": "/redfish/v1/Systems/LogServices/NPU"
},
{
"@odata.id": "/redfish/v1/Systems/LogServices/MindXOM"
},
{
"@odata.id": "/redfish/v1/Systems/LogServices/MEF"
},
{
"@odata.id": "/redfish/v1/Systems/LogServices/OSDivers"
},
],
"Oem": {
"progress": {
"@odata.id": "/redfish/v1/Systems/LogServices/progress"
},
"Actions": {
"#download": {
"target": "/redfish/v1/Systems/LogServices/Actions/download"
}
}
}
}
Response code: 200
Output Description
Field |
Type |
Description |
|---|---|---|
@odata.context |
String |
OData description of a log service resource collection model |
@odata.id |
String |
Access path of a log service resource collection |
@odata.type |
String |
Type of a log service resource collection |
Name |
String |
Name of a log service resource collection |
Members@odata.count |
Number |
Number of current log service resources |
Members |
Object |
List of log service resources |
Members@odata.id |
String |
Access path of a log service resource node |
Oem |
Object |
Customized field. |
progress |
Object |
Log download progress. |
progress@odata.id |
String |
Path to access the log download progress information. |
Actions |
Object |
Log download information. |
target |
String |
Path for downloading log information. |