一、日志接口添加查询条件

ntcAppLogs :searchLabelAppId和searchLabelProtoId
ntcBgpLogs :searchAsNum
ntcFtpLogs :searchFtpUrl
ntcP2pLogs :searchP2pFileId和searchP2pKeyword
ntcStreamMediaLogs :searchUrl
ntcVoipLogs :
	searchCallingAccount 和searchCalledAccount;
ntcDdosLogs : searchAttackType
二、修改App活跃IP top100查询接口,添加指标(searchQuota: 1:连接数 2:包数
3:字节数,默认为1),返回数据中添加占比
This commit is contained in:
zhangdongxu
2019-01-08 18:16:05 +08:00
parent 39a86d948b
commit f51120bd33
12 changed files with 212 additions and 24 deletions

View File

@@ -17,4 +17,5 @@ public interface TrafficAppStatisticDao {
List<Map> getAppList(@Param("beginTime")String beginTime,@Param("endTime")String endTime,@Param("appType")Integer[] appType);
List<TrafficAppFocusStatistic> getAppTrend(TrafficAppFocusStatistic entity);
List<AppConnRecordStatistic> appConnRecordTop100(AppConnRecordStatistic entity);
List<AppConnRecordStatistic> appConnRecordTotal(AppConnRecordStatistic entity);
}