获取告警样本列表。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | ListAlertSamples | 接口名称。当前 API 的名称为 ListAlertSamples 。 |
Version | String | 是 | 2021-03-03 | 接口版本。当前 API 的版本为 2021-03-03 。 |
Limit | Long | 否 | 100 | 告警记录序列样本个数限制,默认值 100,最大值 500。 |
Filter | Object of AlertSampleFilter | 是 | - | 告警样本过滤。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
AlertId | String | 是 | e28ae750-bbb8-4ff4-abf4-1e0e0f88808c | 按告警样本 ID 过滤。 |
SampleSince | Long | 否 | 1600885800 | 按告警开始时间过滤。 |
SampleUntil | Long | 否 | 1600885800 | 按告警结束时间过滤。 |
POST https://open.volcengineapi.com/?Action=ListAlertSamples&Version=2021-03-03 Content-Type: application/json { "Limit": 100, "Filter": { "AlertId": "e28ae750-bbb8-4ff4-abf4-1e0e0f88808c", "SampleSince": 1600885800, "SampleUntil": 1600885800 } }
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Total | Long | 100 | 告警样本总数。 |
Items | Array of AlertSample | - | 告警样本列表。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
AlertId | String | e28ae750-bbb8-4ff4-abf4-1e0e0f88808c | 告警样本 ID。 |
Timestamp | Long | 1686232540 | 告警样本时间戳,unix_timestamp 类型。 |
Phase | String | Active | 告警样本状态,取值:
|
Level | String | P0 | 告警样本等级,包括:P0、P1 和 P2。 |
Value | Double | 123.123 | 告警规则的 PromQL 语句下查询到的当前值。 |
HTTP/1.1: 200 OK Content-Type: application/json { "ResponseMetadata": { "RequestId": "20230604110420****100232280022D31", "Action": "ListAlertSamples", "Version": "2021-03-03", "Service": "vmp", "Region": "cn-north-1" }, "Result": { "Total": 100, "Items": [ { "Level": "P0", "Phase": "Active", "Value": 123.123, "AlertId": "e28ae750-bbb8-4ff4-abf4-1e0e0f88808c", "Timestamp": 1686232540 } ] } }
本接口错误码如下表所示,公共错误码请参见 公共错误码。
HTTP 状态码 | 错误码 | 错误信息 | 说明 |
---|---|---|---|
400 | InvalidParameter.{{parameter}} | The specified parameter {{parameter}} is invalid. | 指定的参数无效。 |
403 | ProductUnsubscribed | You are not subscribed to the Volcengine Managed Service for Prometheus (VMP). Please go to the VMP console web page to subscribe to the service | 当前账号未订阅 VMP 服务。 |