This API allows you to query the traffic of a specified EIP in the last 24 hours. Traffic is detected in five-minute intervals.
Request parameters
None
Name |
Type |
Description |
|---|---|---|
data |
Data structure |
Traffic in the last 24 hours |
Parameter |
Type |
Description |
|---|---|---|
period_start |
Long integer |
Start time |
bps_in |
Integer |
Inbound traffic (bit/s) |
bps_attack |
Integer |
Attack traffic (bit/s) |
total_bps |
Integer |
Total traffic |
pps_in |
Integer |
Inbound packet rate (number of packets per second) |
pps_attack |
Integer |
Attack packet rate (number of packets per second) |
total_pps |
Integer |
Total packet rate |
GET /v1/67641fe6886f43fcb78edbbf0ad0b99f/antiddos/1df977c2-fdc6-4483-bc1c-ba46829f57b8/daily
{"data": [
{
"period_start": 1472713370609,
"bps_in": 0,
"bps_attack": 0,
"total_bps": 0,
"pps_in": 0,
"pps_attack": 0,
"total_pps": 0
},
...
{
"period_start": 1472713670609,
"bps_in": 0,
"bps_attack": 0,
"total_bps": 0,
"pps_in": 0,
"pps_attack": 0,
"total_pps": 0
}]
}
See Status Code.