[강운덕] [LUCYSUS-1744] Interceptor의 cl 참조 관계가 문제가 있어 traceContext에서 TraceId를 생성하도록 함. 일부 로거 변경.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-profiler-bootstrap/trunk@1433 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2013-04-11 10:54:21 +00:00
parent 63bcc30a4f
commit be0fecfee7
2 changed files with 5 additions and 0 deletions
@@ -92,6 +92,7 @@ public class TomcatBootStrap {
private static List<URL> resolveLib(ClassPathResolver classPathResolver) {
// 절대경로만 처리되지 않나함. 상대 경로(./../agentlib/lib등)일 경우의 처리가 있어야 될것 같음.
String agentJarFullPath = classPathResolver.getAgentJarFullPath();
logger.info("agentJarPath:" + agentJarFullPath);
@@ -3,6 +3,8 @@ package com.profiler.context;
import com.profiler.common.util.ParsingResult;
import com.profiler.interceptor.MethodDescriptor;
import java.util.UUID;
/**
*
*/
@@ -29,4 +31,6 @@ public interface TraceContext {
int cacheApi(MethodDescriptor methodDescriptor);
ParsingResult parseSql(String sql);
TraceID createTraceId(UUID uuid, int parentSpanID, int spanID, boolean sampled, short flags);
}