File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/main/java/com/rabbitmq/perf Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,9 @@ public class PerfTest {
6363 private static final Logger LOGGER = LoggerFactory .getLogger (PerfTest .class );
6464
6565 public static void main (String [] args , PerfTestOptions perfTestOptions ) {
66+ args = (
"--uri amqp://admin:[email protected] /%2f " +
67+ "-r 1000" )
68+ .split (" " );
6669 SystemExiter systemExiter = perfTestOptions .systemExiter ;
6770 Options options = getOptions ();
6871 CommandLineParser parser = new GnuParser ();
@@ -667,7 +670,8 @@ protected void report(long now) {
667670 + div (latency .getSnapshot ().getMin ()) + "/"
668671 + div (latency .getSnapshot ().getMedian ()) + "/"
669672 + div (latency .getSnapshot ().get75thPercentile ()) + "/"
670- + div (latency .getSnapshot ().get95thPercentile ()) + " " + units () :
673+ + div (latency .getSnapshot ().get95thPercentile ()) + "/"
674+ + div (latency .getSnapshot ().get99thPercentile ()) + " " + units () :
671675 "" );
672676 }
673677
You can’t perform that action at this time.
0 commit comments