1、APP监测添加service与action的对应关系以及入库序号配置;

2、将配置入库序号分为两版(合并前、合并后),升级部署时注意切换;
3、原始日志查询添加字段:P2P(P2P_PROTO、P2P_FILE_ID、P2P_KEYWORD
)、APP(LABEL_PROTO_ID、LABEL_PROTO_SOURCE
LABEL_BEHAV_ID、LABEL_BEHAV_SOURCE、LABEL_APP_ID、LABEL_APP_SOURCE
);
This commit is contained in:
zhangdongxu
2018-09-13 15:32:52 +08:00
parent dd83863a3d
commit 02eaf285fe
4 changed files with 153 additions and 6 deletions

View File

@@ -414,6 +414,13 @@
<result column="s_subscribe_id" jdbcType="VARCHAR" property="sSubscribeId" />
<result column="d_subscribe_id" jdbcType="VARCHAR" property="dSubscribeId" />
<result column="scene_file" jdbcType="VARCHAR" property="sceneFile" />
<result column="label_proto_id" jdbcType="INTEGER" property="labelProtoId" />
<result column="label_proto_source" jdbcType="INTEGER" property="labelProtoSource" />
<result column="label_behav_id" jdbcType="INTEGER" property="labelBehavId" />
<result column="label_behav_source" jdbcType="INTEGER" property="labelBehavSource" />
<result column="label_app_id" jdbcType="INTEGER" property="labelAppId" />
<result column="label_app_source" jdbcType="INTEGER" property="labelAppSource" />
</resultMap>
<resultMap id="NtcDdosLogMap" type="com.nis.domain.restful.NtcDdosLog">
@@ -985,6 +992,10 @@
<result column="s_subscribe_id" jdbcType="VARCHAR" property="sSubscribeId" />
<result column="d_subscribe_id" jdbcType="VARCHAR" property="dSubscribeId" />
<result column="scene_file" jdbcType="VARCHAR" property="sceneFile" />
<result column="p2p_proto" jdbcType="VARCHAR" property="p2pProto" />
<result column="p2p_file_id" jdbcType="VARCHAR" property="p2pFileId" />
<result column="p2p_keyword" jdbcType="VARCHAR" property="p2pKeyword" />
</resultMap>
<resultMap id="NtcBgpLogMap" type="com.nis.domain.restful.NtcBgpLog">
<result column="cfg_id" jdbcType="BIGINT" property="cfgId" />