Commit 4e8c108f authored by yanzg's avatar yanzg

修复异常提醒,从而正确的跟踪异常信息

parent d9a9521a
...@@ -43,6 +43,11 @@ public class CloudConfig { ...@@ -43,6 +43,11 @@ public class CloudConfig {
*/ */
@Value("${yzg.log.time.max:[0,100,300,1000,5000,30000]}") @Value("${yzg.log.time.max:[0,100,300,1000,5000,30000]}")
private List<Integer> logTimeMax = new ArrayList<>(); private List<Integer> logTimeMax = new ArrayList<>();
/**
* 写入时间
*/
@Value("${yzg.log.time.writeTime:1000}")
private int logWriteTime;
/** /**
* 死锁时间 * 死锁时间
*/ */
...@@ -79,7 +84,6 @@ public class CloudConfig { ...@@ -79,7 +84,6 @@ public class CloudConfig {
@Value("${yzg.gateway:^.*gateway.*$}") @Value("${yzg.gateway:^.*gateway.*$}")
private String gateWay; private String gateWay;
/** /**
* 外网地址 * 外网地址
*/ */
...@@ -114,6 +118,10 @@ public class CloudConfig { ...@@ -114,6 +118,10 @@ public class CloudConfig {
return logTimeMax; return logTimeMax;
} }
public int getLogWriteTime() {
return logWriteTime;
}
public int getLockTime() { public int getLockTime() {
return lockTime; return lockTime;
} }
......
...@@ -95,19 +95,13 @@ public class LogCountTime implements ThreadNext.Next, InitializingBean { ...@@ -95,19 +95,13 @@ public class LogCountTime implements ThreadNext.Next, InitializingBean {
/** /**
* 结束 * 结束
* *
* @param log 日志信息 * @param log 日志信息
* @param useTime 使用时间
*/ */
public void finish(LogInfoVo log) { public void finish(LogInfoVo log, long useTime) {
if (log == null) { if (log == null) {
return; return;
} }
// 获取当前使用时间
long useTime;
if (log.getEnd() == 0) {
useTime = System.currentTimeMillis() - log.getStart();
} else {
useTime = log.getUseTime();
}
// 获取当前请求的级别 // 获取当前请求的级别
int level = 0; int level = 0;
if (useTime > cloudConfig.getLockTime()) { if (useTime > cloudConfig.getLockTime()) {
......
...@@ -69,11 +69,19 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -69,11 +69,19 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
if (!isWait) { if (!isWait) {
cache.remove(log.getLogId()); cache.remove(log.getLogId());
} }
// 获取当前使用时间
long useTime;
if (log.getEnd() == 0) {
useTime = System.currentTimeMillis() - log.getStart();
} else {
useTime = log.getUseTime();
}
// 记录请求时间 // 记录请求时间
logCountTime.finish(log); logCountTime.finish(log, useTime);
// 日志详情请求不记录,防止死循环递归 // 日志详情请求不记录,防止死循环递归
boolean isLog = isLog(log.getTag(), log.getUrl()); boolean isLog = isLog(log.getTag(), log.getUrl());
if (isLog) { // 并判断是否达到记录的时间标准
if (isLog && useTime >= this.cloudConfig.getLogWriteTime()) {
logBase.addLog(log); logBase.addLog(log);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment