From f5f8595876cb783829bbd0d680d58c75f52dbff3 Mon Sep 17 00:00:00 2001 From: Alexey Kopytov Date: Wed, 15 Feb 2017 16:56:28 +0300 Subject: [PATCH] Fix documented defaults for --events and --time. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ff1fe14..1a4cd87 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,8 @@ The table below lists the supported common options, their descriptions and defau *Option* | *Description* | *Default value* ----------------------|---------------|---------------- | `--threads` | The total number of worker threads to create | 1 | -| `--events` | Limit for total number of requests. 0 means unlimited | 10000 | -| `--time` | Limit for total execution time in seconds. 0 (default) means unlimited | 0 | +| `--events` | Limit for total number of requests. 0 (the default) means no limit | 0 | +| `--time` | Limit for total execution time in seconds. 0 means no limit | 10 | | `--rate` | Average transactions rate. The number specifies how many events (transactions) per seconds should be executed by all threads on average. 0 (default) means unlimited rate, i.e. events are executed as fast as possible | 0 | | `--thread-stack-size` | Size of stack for each thread | 32K | | `--report-interval` | Periodically report intermediate statistics with a specified interval in seconds. Note that statistics produced by this option is per-interval rather than cumulative. 0 disables intermediate reports | 0 |