查询告警通知的历史发送列表。
ServiceName: Volc_Observe Region: cn-beijing AccessKey: xxx SecretKey: xxx
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | ListSendAlert | 接口名称。当前 API 的名称为 ListSendAlert 。 |
Version | String | 是 | 2018-01-01 | 接口版本。当前 API 的版本为 2018-01-01 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
AlertGroupId | String | 否 | 633508858e241506ac****** | 告警历史ID。调用ListAlertGroup接口查看返回参数里Id 的参数取值。 |
PageNumber | Integer | 否 |
| 列表的页码,取值 > 0,默认值为1。要查询的列表范围为:
|
PageSize | Integer | 否 | 10 | 分页查询时每页的行数,默认值为10。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Data | Array of SendAlertVO | - | 返回数据。 |
PageSize | Integer | 30 | 分页查询参数,用于设置每页行数。默认值:30。 |
PageNumber | Integer | 1 | 分页查询参数,用于设置当前页码。默认值:1。 |
TotalCount | Integer | 2 | 时间段内的告警记录总数。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Id | String | 63340e8f4f5b3bdee9b***** | 历史告警ID。 |
SendAt | String | 2022-09-28T09:06:23.65Z | 历史告警发送时间。 |
SendResult | Array of SendResult | - | 历史告警的内容。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
ErrMsg | String |
| 错误消息。 |
Success | Boolean |
| 此告警消息发送结果。
|
Receiver | String | 63329d689e5b169425****** | 告警发送记录的ID。 |
AlertMethod | String |
| 告警发送的通知方式。
|
POST https://open.volcengineapi.com?Action=ListSendAlert&Version=2018-01-01 ServiceName: Volc_Observe Region: cn-beijing AccessKey: xxx SecretKey: xxx { "Namespace":"VCM_Kafka", "AlertGroupId":"6332a1ed9e5b169425******", "PageNumber":1, "PageSize":30, "Filter":"" }
{ "ResponseMetadata":{ "RequestId":"20230****44C52", "Action":"ListSendAlert", "Version":"2018-01-01", "Service":"Volc_Observe", "Region":"cn-beijing" }, "Result":{ "Data":[ { "Id":"63340e8f4f5b3bdee9b*****", "SendAt":"2022-09-28T09:06:23.65Z", "SendResult":[ { "Receiver":"abc@11.com", "AlertMethod":"Email", "Success":true, "ErrMsg":"" }, { "Receiver":"1503875****", "AlertMethod":"SMS", "Success":true, "ErrMsg":"" } ] }, { "Id":"633508998e241506acc*****", "SendAt":"2022-09-29T02:53:13.9Z", "SendResult":[ { "Receiver":"https://open.cn/open-apis/bot/v2/hook/1356***302d3e5e", "AlertMethod":"API", "Success":false, "ErrMsg":"" } ] } ], "PageNumber":1, "PageSize":30, "TotalCount":2 } }