Querying the Total Number of Attacks¶
Function Description¶
This API is used to query the total number of attacks.
URI¶
URI format
GET /v1/{project_id}/waf/event/attack/num?from={from}&to={to}&hosts={hostids}
Note
An example of a URI is as follows:
GET /v1/3ac26c59e15a4a11bb680a103a29ddb6/waf/event/attack/type?from=1543976973635&to=1563976973635&hosts=3211757cafa3437aae24d760022e79ba&hosts=93029844064b43739b51ca63036fbc4b&hosts=34fe5f5c60ef4e43a9975296765d1217
Parameter description
¶ Parameter
Mandatory
Type
Description
project_id
Yes
String
Specifies the project ID.
from
Yes
String
Specifies the start time (UTC) in milliseconds. For example, 1548172800000.
to
Yes
String
Specifies the end time (UTC) in milliseconds. For example, 1548431999000.
hosts
No
Array
Specifies the domain IDs.
Request¶
Request parameters
None
Response¶
Response parameters
Parameter | Type | Description |
---|---|---|
attack_num | Integer | Specifies the total number of attacks. |
Example¶
Response example
{
"attack_num": 150
}
Status Code¶
Table 3 describes the normal status code returned by the API.
Status Code | Description | Meaning |
---|---|---|
200 | OK | The request has succeeded. |
For details about error status codes, see Status Codes.