mirror of
https://github.com/tendermint/tendermint.git
synced 2025-12-31 02:05:18 +00:00
This pull request adds the report tool and modifies the loadtime libraries to better support its use.
12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -euo pipefail
|
|
|
|
# A basic invocation of the loadtime tool.
|
|
|
|
./build/load \
|
|
-c 1 -T 10 -r 1000 -s 1024 \
|
|
--broadcast-tx-method sync \
|
|
--endpoints ws://localhost:26657/websocket
|
|
|