增加通联关系ASN统计报表

This commit is contained in:
doufenghu
2019-01-04 11:57:31 +06:00
parent 75578bc44b
commit 2a44754632

View 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;