public class Test {
public static void execute(String ip,String port) throws MalformedURLException {
String url = "http://"+ip+":"+port+"/apis/hello";
HessianProxyFactory factory = new HessianProxyFactory();
factory.setUser("client1");
factory.setPassword("client1");
factory.setOverloadEnabled(true);
final Hello basic = (Hello) factory.create(Hello.class, url);
//System.out.println("SayHello:" + basic.hello("guolei"));
}
}
|
6.查看測試結(jié)果
聚合報(bào)告中基本已經(jīng)包含我們所關(guān)心的幾個(gè)數(shù)據(jù)了:
Samples -- 本次場景中一共完成了多少個(gè)Transaction
Average -- 平均響應(yīng)時(shí)間
Median -- 統(tǒng)計(jì)意義上面的響應(yīng)時(shí)間的中值
90% Line -- 所有transaction中90%的transaction的響應(yīng)時(shí)間都小于xx
Min -- 小響應(yīng)時(shí)間
Max -- 大響應(yīng)時(shí)間
PS: 以上時(shí)間的單位均為ms
Error -- 出錯(cuò)率
Troughput -- 吞吐量,單位:transaction/sec
KB/sec -- 以流量做衡量的吞吐量