[강운덕] [LUCYSUS-1744] udp datasender버그 수정. collection data를 잘못된 api로 던지는 부분이 있음.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1528 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2013-04-23 07:34:35 +00:00
parent 5b696442d5
commit 0d505967d2
12 changed files with 102 additions and 39 deletions
@@ -33,7 +33,7 @@ public class SystemMonitor {
@Override
public Thread newThread(Runnable runnable) {
Thread t = new Thread(runnable);
t.setName("HIPPO-SystemMonitor");
t.setName(ProductInfo.CAMEL_NAME + "-SystemMonitor");
t.setDaemon(true);
return t;
}