[강운덕] [LUCYSUS-1744] root Span만 조회하여 trace 데이터를 구성하도록 수정.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@822 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2012-10-25 09:46:00 +00:00
parent e722f4667b
commit 067abb052c
11 changed files with 170 additions and 103 deletions
@@ -0,0 +1,42 @@
package com.nhn.hippo.web.performance;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.junit.Test;
import java.io.IOException;
/**
*
*/
public class TestSuite {
// @Test
public void insertData() throws IOException, InterruptedException {
for (int i = 0; i < 10000; i++) {
int mod = i % 4;
if (mod == 0) {
HttpClient client = new DefaultHttpClient();
HttpGet get1 = new HttpGet("http://localhost:8080/combination.hippo");
HttpResponse execute = client.execute(get1);
} else if (mod == 1) {
HttpClient client = new DefaultHttpClient();
HttpGet get2 = new HttpGet("http://localhost:8080/mysql.hippo");
HttpResponse execute = client.execute(get2);
} else if (mod == 2) {
HttpClient client = new DefaultHttpClient();
HttpGet get3 = new HttpGet("http://localhost:8080/donothing.hippo");
HttpResponse execute = client.execute(get3);
} else if (mod == 3) {
HttpClient client = new DefaultHttpClient();
HttpGet get4 = new HttpGet("http://localhost:8080/combination.hippo");
HttpResponse execute = client.execute(get4);
}
Thread.sleep(300);
}
}
}