final CountStatistic r3 = s.getAverageResponseTime();
assert( r3 != null );
System.out.println("avg resp is "+ r3.getCount());
final NumberStatistic c1 = s.getThroughput() ;
assert( c1 != null );
System.out.println(" through put is "+ c1.getCurrent());
final CountStatistic c2 = s.getTotalAuthFailures();
assert( c2 != null );
System.out.println(" total num auth success is "+ c2.getCount());