You need to enable JavaScript to run this app.
导航
DescAttackEvent-获取攻击事件列表
最近更新时间:2024.06.27 22:21:30首次发布时间:2024.06.27 22:21:30

您可调用此接口查询防护资源 IP 遭受的攻击事件详情,例如攻击类型、持续时间、攻击状态等,支持查询单个或多个防护资源 IP。

请求说明

  • 请求方式:POST
  • 请求地址:https://open.volcengineapi.com/?Action=DescAttackEvent&Version=2022-01-01

请求参数

Query

参数类型是否必选示例值描述
ActionStringDescAttackEvent接口名称。当前 API 的名称为 DescAttackEvent
VersionString2022-01-01接口版本。当前 API 的版本为 2022-01-01

Body

参数类型是否必选示例值描述
BeginTimeLong1712642400查询起始时间,秒级时间戳。
EndTimeLong1712646000查询终止时间,秒级时间戳。
InsIdInteger66防护实例的 ID,可调用DescInstanceList接口获取具体值。
IpListArray of String["180.184.86.**","180.184.87.**"]查询的防护资源 IP 列表,支持查询单个或多个防护资源 IP。
CurrPageInteger1当前页面的页码。例如,1 表示展示查询到的第 1 页事件信息。默认为1
PageSizeInteger10每个页面显示的条目数量。取值范围:10~100,默认为10

返回参数

参数类型示例值描述
AttackCountInteger1攻击事件总数。
AttackedIpNumInteger1被攻击的 IP 数量。
AttacksArray of Attacks--攻击事件详情。
TotalIpNumInteger3当前实例下的防护资源 IP 总数。

Attacks

参数类型示例值描述

AttackType

String

SYN Flood

攻击事件类型。

  • SYN Flood
  • ACK Flood
  • SYN-ACK Flood
  • FIN/RST Flood
  • UDP Flood
  • UDP Reflect Flood
  • DNS Flood
  • ICMP Flood
  • Malformed Flood
  • Other Flood
  • Other Protocol Flood
DurationInteger900攻击持续时间,单位:秒。
EndTimeInteger1718873762攻击结束时间,秒级时间戳。
IdInteger907攻击事件 ID,可用于查询特定攻击事件的攻击流量数据。
IpString180.184.86.**被攻击的防护资源 IP。
PeakDropKbpsInteger124023攻击带宽峰值,单位:Kbps。
PeakDropPpsInteger258382攻击包速率峰值,单位:pps。
StartTimeInteger1718872860攻击开始时间,秒级时间戳。

Status

Integer

2

攻击状态。

  • 1:攻击中
  • 2:攻击结束

请求示例

POST https://open.volcengineapi.com/?Action=DescAttackEvent&Version=2022-01-01
Host: https://open.volcengineapi.com
Content-Type: application/json; charset=UTF-8
X-Date: 20240610T082509Z
X-content-Sha256: 287e874e******d653b44d21e
Authorization: HMAC-SHA256 Credential=Adfks******wekfwe/20240610/cn-beijing/origin_defence/request, SignedHeaders=host;x-content-sha256;x-date, Signature=47a7d934ff7b37c03938******cd7b8278a40a1057690c401e92246a0e41085f
{
    "BeginTime": 1712642400,
    "CurrPage": 1,
    "EndTime": 1712646000,
    "InsId": 66,
    "IpList": [
        "180.184.86.**",
        "180.184.87.**"
    ],
    "PageSize": 10
}

返回示例

{
    "ResponseMetadata": {
        "Action": "DescAttackEvent",
        "Region": "cn-beijing",
        "RequestId": "20230604110420****100232280022D31",
        "Service": "origin_defence",
        "Version": "2022-01-01"
    },
    "Result": {
        "AttackCount": 1,
        "AttackedIpNum": 1,
        "Attacks": [
            {
                "AttackType": "SYN Flood",
                "Duration": 900,
                "EndTime": 1718873762,
                "Id": 907,
                "Ip": "180.184.86.**",
                "PeakDropKbps": 124023,
                "PeakDropPps": 258382,
                "StartTime": 1718872860,
                "Status": 2
            }
        ],
        "TotalIpNum": 3
    },
      "PageInfo": {
        "TotalCount": 1,
        "PageSize": 10,
        "CurrentPage": 1,
        "Count": 1
    }
}