获取警报信息
1.接口描述
接口说明:获取机箱的警报信息。
请求方式:POST [ip]/api/chassis/get-alert
管理员权限 | 登录认证 |
---|---|
否 | 是 |
2.输入参数
无
3.输出参数
参数名称 | 类型 | 描述 |
---|---|---|
status | Int | 状态码 |
code | String | 状态描述 |
alert-num | Int | 警报信息的总数量 |
alert | Array of AlertData | 警报信息列表 |
AlertData
参数名称 | 类型 | 描述 |
---|---|---|
index | Int | 警报信息的索引 |
information | String | 警报信息 |
4.示例
获取设备警报信息。
输入示例
None
输出示例
{
"alert-num": 3,
"alert": [
{
"index": 1,
"information": "2023/05/29 19:38:18\npower1 DC output below minimum detection level"
},
{
"index": 2,
"information": "2023/05/29 19:38:18\nfan 2 failed to start and stopped rotating"
},
{
"index": 3,
"information": "2023/05/29 19:38:18\nfan 3 failed to start and stopped rotating"
}
],
"status": 0,
"code": "Success"
}
5.错误码
无接口业务逻辑相关的错误码,其他错误码详见 公共错误码。