Commit beb10a57 authored by yanzg's avatar yanzg

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

parent c51570bf
package com.yanzuoguang.log; package com.yanzuoguang.log;
import com.yanzuoguang.util.base.CollectionString;
import com.yanzuoguang.util.cache.MemoryCache; import com.yanzuoguang.util.cache.MemoryCache;
import com.yanzuoguang.util.helper.DateHelper; import com.yanzuoguang.util.helper.DateHelper;
import com.yanzuoguang.util.helper.StringHelper; import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.thread.ThreadNext;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.util.Collections;
import java.util.Comparator;
/** /**
* 日志时间 * 日志时间
* *
* @author 颜佐光 * @author 颜佐光
*/ */
@Component @Component
public class LogCountTime { public class LogCountTime implements ThreadNext.Next, InitializingBean {
private static final String URL_PARA_START = "?"; private static final String URL_PARA_START = "?";
private final LogConfig logConfig;
/** /**
* 今日缓存,超过时间会自动清空 * 今日缓存,超过时间会自动清空
*/ */
...@@ -23,28 +29,24 @@ public class LogCountTime { ...@@ -23,28 +29,24 @@ public class LogCountTime {
* 今日日期 * 今日日期
*/ */
private String today; private String today;
/**
* 今日时间
*/
private String todayTime;
/** public LogCountTime(LogConfig logConfig) {
* 获取日志结果 this.logConfig = logConfig;
* }
* @return 今日日志结果
*/ @Override
public LogCountResult getTodayResult() { public void afterPropertiesSet() {
return new LogCountResult(todayTime, todayMemoryCache.getValues()); ThreadNext.start(this, "aspectLogTime");
} }
private void initToday() { private void initToday() {
String today = DateHelper.getToday(); String today = DateHelper.getToday();
if (!StringHelper.compare(this.today, today)) { if (!StringHelper.compare(this.today, today)) {
synchronized (todayMemoryCache) { synchronized (this.todayMemoryCache) {
this.next();
if (!StringHelper.compare(this.today, today)) { if (!StringHelper.compare(this.today, today)) {
todayMemoryCache.clear(); this.todayMemoryCache.clear();
this.today = today; this.today = today;
this.todayTime = DateHelper.getNow();
} }
} }
} }
...@@ -62,8 +64,7 @@ public class LogCountTime { ...@@ -62,8 +64,7 @@ public class LogCountTime {
String key; String key;
if (urlFrom.contains(URL_PARA_START)) { if (urlFrom.contains(URL_PARA_START)) {
key = urlFrom.substring(0, urlFrom.indexOf(URL_PARA_START)); key = urlFrom.substring(0, urlFrom.indexOf(URL_PARA_START));
} } else {
else{
key = urlFrom; key = urlFrom;
} }
// 缓存中获取对象 // 缓存中获取对象
...@@ -84,24 +85,35 @@ public class LogCountTime { ...@@ -84,24 +85,35 @@ public class LogCountTime {
} }
/** /**
* 开始记录日志 * 结束
* *
* @param url 请求地址 * @param log 日志信息
*/ */
public void start(String url) { public void finish(LogInfoVo log) {
LogUrlCountVo count = getCount(url); LogUrlCountVo count = getCount(log.getUrl());
count.addStart(); count.addStart();
count.addFinish(log.getUseTime(), log.getStatus() == LogInfoVo.STATUS_ERROR);
} }
/** @Override
* 结束 public boolean next() {
* LogCountResult todayResult = new LogCountResult(this.today, todayMemoryCache.getValues());
* @param url 请求地址 if (todayResult.getList().isEmpty()) {
* @param time 执行时间 return true;
* @param isError 是否错误 }
*/ // 按照使用总时间升序排序
public void finish(String url, long time, boolean isError) { todayResult.getList().sort(Comparator.comparingLong(LogUrlCountVo::getTotalTime));
LogUrlCountVo count = getCount(url); // 逆转排序
count.addFinish(time, isError); Collections.reverse(todayResult.getList());
// 打印日志
String tag = todayResult.getTodayTime() + "执行次数:";
System.out.println(CollectionString.getCollectionString(tag, todayResult.getList()));
// 下次继续执行
return true;
}
@Override
public int getNextTime() {
return logConfig.getLogCountTime();
} }
} }
...@@ -69,25 +69,17 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -69,25 +69,17 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
* @param log 日志对象 * @param log 日志对象
*/ */
public void result(LogInfoVo log) { public void result(LogInfoVo log) {
if (log == null) { if (log == null || StringHelper.isEmpty(log.getLogId())) {
return; return;
} }
// 日志请求不记录,防止死循环递归 // 日志请求不记录,防止死循环递归
boolean isLog = isLog(log.getTag(), log.getUrl()); boolean isLog = isLog(log.getTag(), log.getUrl());
this.resultWrite(log);
String fullUrl = String.format("%s:%s", tag, url);
logCountTime.start(fullUrl);
// 全路径 // 全路径
String fullUrl = String.format("%s:%s", tag, url); String fullUrl = String.format("%s:%s", tag, url);
// 执行时间 // 执行时间
long time = System.currentTimeMillis() - log.getStart(); long time = System.currentTimeMillis() - log.getStart();
// 记录请求时间 // 记录请求时间
logCountTime.finish(fullUrl, time, isError); logCountTime.finish(log);
if (log == null || StringHelper.isEmpty(log.getLogId())) {
return;
}
Timeout<LogInfoVo> timeout; Timeout<LogInfoVo> timeout;
// 判断是否延时结果 // 判断是否延时结果
boolean isMaxTime = StringHelper.compare(status, MAX_TIME); boolean isMaxTime = StringHelper.compare(status, MAX_TIME);
...@@ -96,11 +88,8 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -96,11 +88,8 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
} else { } else {
timeout = cache.remove(log.getLogId()); timeout = cache.remove(log.getLogId());
} }
if (write) {
logBase.addLog(log); logBase.addLog(log);
} }
}
/** /**
......
package com.yanzuoguang.log;
import com.yanzuoguang.util.base.CollectionString;
import com.yanzuoguang.util.thread.ThreadNext;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component;
import java.util.Collections;
import java.util.Comparator;
/**
* 将请求次数日志输出
*
* @author 颜佐光
*/
@Component
public class LogPrint implements ThreadNext.Next, InitializingBean {
private final LogConfig logConfig;
private final LogCountTime logCountTime;
public LogPrint(LogConfig logConfig, LogCountTime logCountTime) {
this.logConfig = logConfig;
this.logCountTime = logCountTime;
}
@Override
public void afterPropertiesSet() {
ThreadNext.start(this, "aspectLogTime");
}
@Override
public boolean next() {
LogCountResult todayResult = logCountTime.getTodayResult();
if (todayResult.getList().isEmpty()) {
return true;
}
// 按照使用总时间升序排序
todayResult.getList().sort(Comparator.comparingLong(LogUrlCountVo::getTotalTime));
// 逆转排序
Collections.reverse(todayResult.getList());
// 打印日志
String tag = "从" + todayResult.getTodayTime() + "时执行次数:";
System.out.println(CollectionString.getCollectionString(tag, todayResult.getList()));
// 下次继续执行
return true;
}
@Override
public int getNextTime() {
return logConfig.getLogCountTime();
}
}
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