1、对原始日志查询开始时间和结束时间两个查询条件的日期格式在验证时进行严格解析;

2、为请求日志service_request_log添加request_uri字段;
This commit is contained in:
zhangdongxu
2018-08-08 10:52:53 +08:00
parent c02eb6fc3a
commit 35709dedbf
4 changed files with 26 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ public class ServicesRequestLog implements Serializable {
private String exceptionInfo;
private String serverIp;
private String traceCode;
private String requestURI;
/**
* serverIp
@@ -224,4 +225,17 @@ public class ServicesRequestLog implements Serializable {
this.traceCode = traceCode;
}
/**
* @param requestURI the requestURI to set
*/
public void setRequestURI(String requestURI) {
this.requestURI = requestURI;
}
/**
* @return the requestURI
*/
public String getRequestURI() {
return requestURI;
}
}