You need to enable JavaScript to run this app.
导航
DescribeAttackEvent-查询 DDoS 攻击事件详情
最近更新时间:2024.07.19 19:17:48首次发布时间:2024.07.19 19:17:48

查询实例在特定时段内遭受的 DDoS 攻击事件详情,包括攻击状态、攻击类型和攻击持续时间等信息。

请求说明

  • 请求方式:POST
  • 请求地址:https://open.volcengineapi.com/?Action=DescribeAttackEvent&Version=2023-03-08

调试

请求参数

Query

参数类型是否必选示例值描述
ActionStringDescribeAttackEvent接口名称。当前 API 的名称为 DescribeAttackEvent
VersionString2023-03-08接口版本。当前 API 的版本为 2023-03-08

Body

参数类型是否必选示例值描述
BeginTimeInteger1716370200起始时间,秒级时间戳,结束时间应大于起始时间。
EndTimeInteger1718962200结束时间,秒级时间戳,结束时间应大于起始时间。
InstanceIpsArray of String["180.188.**.**"]实例 IP 列表。
CurrPageInteger1当前页码。
PageSizeInteger10每个页面展示的条目数量。

返回参数

参数类型示例值描述
AttacksArray of AttackWrapper--攻击信息详情。
CountInteger4攻击次数。

AttackWrapper

参数类型示例值描述

Status

Integer

2

攻击状态:

  • 1:进行中
  • 2:攻击结束
EndTimeInteger1717753801攻击结束时间,秒级时间戳。0 表示当前攻击还未结束。
DurationInteger929攻击持续时间,若当前攻击仍未结束,则表示从攻击开始到当前时间的长度。
StartTimeInteger1717752872攻击开始时间,秒级时间戳。
AttackTypeStringSYN Flood攻击事件类型。
InstanceIpString1.1.1.1实例 IP 地址。
PeakDropPpsInteger339218攻击包速峰值,单位:pps。
PeakDropKbpsInteger179107攻击流量峰值,单位:Kbps。
TotalDropBitsInteger179107累计丢弃流量,单位:Mbps。
TotalDropPktsInteger339218累计丢弃报文数,单位:K。

请求示例

POST https://open.volcengineapi.com/?Action=DescribeAttackEvent&Version=2023-03-08
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
{
  "CurrPage": 1,
  "PageSize": 10,
  "InstanceIps": [
    "240e:f7:7c00:**::**",
    "180.188.**.**"
  ],
  "BeginTime": 1720692060,
  "EndTime": 1720778460
}

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20240712180114****B0FC67D3F9F66C31",
        "Action": "DescribeAttackEvent",
        "Version": "2023-03-08",
        "Service": "AdvDefence",
        "Region": "cn-beijing"
    },
    "Result": {
        "Count": 1,
        "Attacks": [
            {
                "InstanceIp": "180.188.**.**",
                "AttackType": "SYN Flood",
                "Status": 2,
                "StartTime": 1720765590,
                "EndTime": 1720767001,
                "Duration": 1411,
                "PeakDropKbps": 700537,
                "PeakDropPps": 60225,
                "TotalDropBits": 108863,
                "TotalDropPkts": 9359
            }
        ]
    },
    "PageInfo": {
        "TotalCount": 1,
        "PageSize": 10,
        "CurrentPage": 1,
        "Count": 1
    }
}