summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2015-12-03 14:20:19 -0500
committerSusan LoVerso <sue@wiredtiger.com>2015-12-03 14:20:19 -0500
commitf36b1a7aa536c11baf7885787b41cdcb4da50a75 (patch)
tree1bbc16b95c6959059cff0948421d01773b4e74e1
parente53e2795e1683d4d7283b42636efd6d90817e863 (diff)
downloadmongo-f36b1a7aa536c11baf7885787b41cdcb4da50a75.tar.gz
WT-2257 Print out throttle setting in workload info.
-rw-r--r--bench/wtperf/wtperf.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/bench/wtperf/wtperf.c b/bench/wtperf/wtperf.c
index 899e5fd2887..1f8e1c11106 100644
--- a/bench/wtperf/wtperf.c
+++ b/bench/wtperf/wtperf.c
@@ -1534,8 +1534,10 @@ execute_workload(CONFIG *cfg)
lprintf(cfg, 0, 1,
"Starting workload #%d: %" PRId64 " threads, inserts=%"
PRId64 ", reads=%" PRId64 ", updates=%" PRId64
- ", truncate=%" PRId64, i + 1, workp->threads, workp->insert,
- workp->read, workp->update, workp->truncate);
+ ", truncate=%" PRId64 ", throttle=%" PRId64,
+ i + 1, workp->threads, workp->insert,
+ workp->read, workp->update, workp->truncate,
+ workp->throttle);
/* Figure out the workload's schedule. */
if ((ret = run_mix_schedule(cfg, workp)) != 0)