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

@@ -1,6 +1,7 @@
package com.nis.domain.restful;
import com.nis.domain.LogEntity;
import com.wordnik.swagger.annotations.ApiModelProperty;
/**
*
@@ -14,4 +15,47 @@ public class NtcP2pLog extends LogEntity<NtcP2pLog> {
private static final long serialVersionUID = -8085222950278735219L;
@ApiModelProperty(value = "P2P协议", required = true)
private String p2pProto;
@ApiModelProperty(value = "文件标识", required = true)
private String p2pFileId;
@ApiModelProperty(value = "Emule搜索关键词", required = true)
private String p2pKeyword;
/**
* @return the p2pProto
*/
public String getP2pProto() {
return p2pProto;
}
/**
* @param p2pProto the p2pProto to set
*/
public void setP2pProto(String p2pProto) {
this.p2pProto = p2pProto;
}
/**
* @return the p2pFileId
*/
public String getP2pFileId() {
return p2pFileId;
}
/**
* @param p2pFileId the p2pFileId to set
*/
public void setP2pFileId(String p2pFileId) {
this.p2pFileId = p2pFileId;
}
/**
* @return the p2pKeyword
*/
public String getP2pKeyword() {
return p2pKeyword;
}
/**
* @param p2pKeyword the p2pKeyword to set
*/
public void setP2pKeyword(String p2pKeyword) {
this.p2pKeyword = p2pKeyword;
}
}