parent
9d0a48d54f
commit
47d913de05
@ -194,6 +194,10 @@ public class MetricsMonitor {
|
||||
return NacosMeterRegistryCenter.timer(METER_REGISTRY, "nacos_timer", "module", "config", "name", "notifyRt");
|
||||
}
|
||||
|
||||
public static Timer getDumpRtTimer() {
|
||||
return NacosMeterRegistryCenter.timer(METER_REGISTRY, "nacos_timer", "module", "config", "name", "dumpRt");
|
||||
}
|
||||
|
||||
public static Counter getIllegalArgumentException() {
|
||||
return NacosMeterRegistryCenter
|
||||
.counter(METER_REGISTRY, "nacos_exception", "module", "config", "name", "illegalArgument");
|
||||
|
@ -142,7 +142,6 @@ public class ConfigTraceService {
|
||||
//localIp | dataid | group | tenant | requestIpAppName | ts | client ip | event | type | [delayed = -1] | ext
|
||||
// (md5)
|
||||
String md5 = content == null ? null : MD5Utils.md5Hex(content, Constants.PERSIST_ENCODE);
|
||||
|
||||
LogUtil.TRACE_LOG.info("{}|{}|{}|{}|{}|{}|{}|{}|{}|{}|{}", InetUtils.getSelfIP(), dataId, group, tenant,
|
||||
requestIpAppName, ts, handleIp, event, type, -1, md5);
|
||||
}
|
||||
@ -165,17 +164,14 @@ public class ConfigTraceService {
|
||||
if (!LogUtil.TRACE_LOG.isInfoEnabled()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (delayed < 0) {
|
||||
delayed = 0;
|
||||
}
|
||||
|
||||
MetricsMonitor.getNotifyRtTimer().record(delayed, TimeUnit.MILLISECONDS);
|
||||
// Convenient tlog segmentation
|
||||
if (StringUtils.isBlank(tenant)) {
|
||||
tenant = null;
|
||||
}
|
||||
|
||||
//localIp | dataid | group | tenant | requestIpAppName | ts | handleIp | event | type | [delayed] | ext
|
||||
// (targetIp)
|
||||
LogUtil.TRACE_LOG.info("{}|{}|{}|{}|{}|{}|{}|{}|{}|{}|{}", InetUtils.getSelfIP(), dataId, group, tenant,
|
||||
@ -227,6 +223,7 @@ public class ConfigTraceService {
|
||||
if (delayed < 0) {
|
||||
delayed = 0;
|
||||
}
|
||||
MetricsMonitor.getDumpRtTimer().record(delayed, TimeUnit.MILLISECONDS);
|
||||
// Convenient tlog segmentation
|
||||
if (StringUtils.isBlank(tenant)) {
|
||||
tenant = null;
|
||||
@ -284,11 +281,9 @@ public class ConfigTraceService {
|
||||
if (StringUtils.isBlank(tenant)) {
|
||||
tenant = null;
|
||||
}
|
||||
|
||||
if (isNotify && delayed < 0) {
|
||||
delayed = 0;
|
||||
}
|
||||
|
||||
// localIp | dataid | group | tenant| requestIpAppName| ts | event | type | [delayed] |clientIp| isNotify | mode(http/grpc)
|
||||
LogUtil.TRACE_LOG.info("{}|{}|{}|{}|{}|{}|{}|{}|{}|{}|{}|{}", InetUtils.getSelfIP(), dataId, group, tenant,
|
||||
requestIpAppName, ts, event, type, delayed, clientIp, isNotify, model);
|
||||
|
Loading…
Reference in New Issue
Block a user