1、对原始日志查询开始时间和结束时间两个查询条件的日期格式在验证时进行严格解析;
2、为请求日志service_request_log添加request_uri字段;
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user