最近更新时间:2022-11-08
请求方法:GET
接口描述:查询事件数据明细。
名称 | 数据类型 | 参数类型 | 是否必填 | 描述 |
Authorization | String | Header | Y | 签名信息 |
Content-Type | String | Header | Y | application/json; charset=utf-8 |
X-UNI-Timestamp | String | Header | Y | 工具类生成的时间戳 |
Host | String | Header | Y | 紫光云openapi host地址 |
Action | String | Query | Y | openCountEventHistoryGroupByCategory。 |
regionId | String | Query | Y | 节点ID |
startTime | Long | Query | Y | 开始时间(毫秒级时间戳) |
endTime | Long | Query | Y | 结束时间(毫秒级时间戳) |
category | String | Query | N | 事件类型 |
resourceType | String | Query | N | 资源类型 |
page | Integer | Query | Y | 页数 |
size | Integer | Query | Y | 页码 |
名称 | 类型 | 描述 | |
auth | Boolean | ||
code | String | 接口调用返回码 | |
msg | String | 接口调用信息 | |
res | Object | 返回数据 | |
data | Object | ||
data | page | Integer | 当前页数 |
size | Integer | 当前页码 | |
totalCount | Integer | 数据总量 | |
totalPages | Integer | 总页数 | |
list | Array | 返回数据 | |
List | alarmRuleLevel | String | 告警级别 |
Count | Integer | 事件数量 | |
dataCategory | String | 事件编码 | |
dataCategoryName | String | 事件名称 | |
lastTriggerTime | Long | 最新发生事件 | |
resourceType | String | 资源类型 |
公共错误参见“公共错误码集合”。
http://10.0.45.193:30990/openMonitor?regionId=cn-tianjin-yfb&page=1&size=5&category=dbaas.event.postgresql.node.status.failed&resourceType=postgresql&startTime=1663222916568&endTime=1663226516568&Action=openCountEventHistoryGroupByCategory&AccessKeyId=AfAgoRP69cLbqnbO
Authorization:UNI3-HMAC-SHA256 Credential=AfAgoRP69cLbqnbO/2022-09-15/openMonitor/uni3_request, SignedHeaders=content-type;host;x-uni-timestamp, Signature=fb756638cf4dbe1153661e0d76b719430021a97c007193d35a2322e61b4a9e38 Content-Type:application/json; charset=utf-8 X-UNI-Timestamp:1663226635 Host:10.0.45.193:30990 |
JSON格式
{ "status": true, "code": "0", "res": { "page": 1, "size": 5, "totalCount": 1, "totalPages": 1, "list": [ { "dataCategory": "dbaas.event.postgresql.node.status.failed", "dataCategoryName": "节点状态异常", "count": 2, "alarmRuleLevel": "EMERGENCY", "lastTriggerTime": 1663225212000, "resourceType": "postgresql" } ], "records": [] }, "msg": null, "auth": true } |