From 169ece8226afeb8eb062795e4a537325bc6be5ab Mon Sep 17 00:00:00 2001 From: sakridge Date: Sat, 21 Sep 2019 21:12:10 -0700 Subject: [PATCH] Rename client.sh to bench-tps.sh (#6014) --- book/src/getting-started.md | 4 ++-- multinode-demo/{client.sh => bench-tps.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename multinode-demo/{client.sh => bench-tps.sh} (100%) diff --git a/book/src/getting-started.md b/book/src/getting-started.md index 7624967a33..21d2bd8125 100644 --- a/book/src/getting-started.md +++ b/book/src/getting-started.md @@ -110,7 +110,7 @@ some transactions! In a separate shell start the client: ```bash -$ ./multinode-demo/client.sh # runs against localhost by default +$ ./multinode-demo/bench-tps.sh # runs against localhost by default ``` What just happened? The client demo spins up several threads to send 500,000 transactions @@ -161,7 +161,7 @@ This will dump all the threads stack traces into gdb.txt In this example the client connects to our public testnet. To run validators on the testnet you would need to open udp ports `8000-10000`. ```bash -$ ./multinode-demo/client.sh --entrypoint testnet.solana.com:8001 --drone testnet.solana.com:9900 --duration 60 --tx_count 50 +$ ./multinode-demo/bench-tps.sh --entrypoint testnet.solana.com:8001 --drone testnet.solana.com:9900 --duration 60 --tx_count 50 ``` You can observe the effects of your client's transactions on our [dashboard](https://metrics.solana.com:3000/d/testnet/testnet-hud?orgId=2&from=now-30m&to=now&refresh=5s&var-testnet=testnet) diff --git a/multinode-demo/client.sh b/multinode-demo/bench-tps.sh similarity index 100% rename from multinode-demo/client.sh rename to multinode-demo/bench-tps.sh