增加通联关系ASN统计报表
This commit is contained in:
9
db/20181229/traffic_statistic.sql
Normal file
9
db/20181229/traffic_statistic.sql
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
CREATE TABLE `traffic_asn_statistic` (
|
||||||
|
`stat_id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||||
|
`asn_type` int(11) NOT NULL COMMENT '1-src_asn 2-dst_asn',
|
||||||
|
`asn` varchar(64) NOT NULL,
|
||||||
|
`packets` bigint(20) NOT NULL,
|
||||||
|
`bytes` bigint(20) NOT NULL,
|
||||||
|
`stat_time` datetime NOT NULL ,
|
||||||
|
PRIMARY KEY (`stat_id`)
|
||||||
|
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
|
||||||
Reference in New Issue
Block a user