summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwangwei <[email protected]>2018-12-22 13:49:04 +0800
committerwangwei <[email protected]>2018-12-22 13:49:04 +0800
commit2f7944c789cebcc6ba87aca4c5f266620825b5a3 (patch)
treefeb29c5ce3c74453146ed15fe7843a88cec1c319
parentd007a8d286d9960677a1d492cf5ce913767c6f06 (diff)
修改1h互联网流量TOP count属性的单位为 byte/s
-rw-r--r--src/main/resources/mybatis/mapper/NetflowTopNMapper.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/mybatis/mapper/NetflowTopNMapper.xml b/src/main/resources/mybatis/mapper/NetflowTopNMapper.xml
index 4806681..374f520 100644
--- a/src/main/resources/mybatis/mapper/NetflowTopNMapper.xml
+++ b/src/main/resources/mybatis/mapper/NetflowTopNMapper.xml
@@ -39,7 +39,7 @@
<select id="getNetFlowWaterTop10" resultType="com.nis.galaxy.domain.NetFlowWater">
<![CDATA[
- select entrance_id as area ,stat_time as time, IFNULL(SUM(c2s_byte_len+s2c_byte_len),0)/1024/1024 as count
+ select entrance_id as area ,stat_time as time, IFNULL(SUM(c2s_byte_len+s2c_byte_len),0) as count
from traffic_trans_statistic where STAT_TIME>= #{start} and STAT_TIME<#{end}
group by stat_time,entrance_id