summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGianfranco Palumbo <gianpa@gmail.com>2013-07-09 13:51:49 +0100
committerMatt Kangas <matt.kangas@10gen.com>2013-07-10 12:02:05 -0400
commitf126215c5e23637a55c6fda08f5b5d6f1dcbce88 (patch)
tree6b27b05fce9762a3d7e01a5ae740b27e2594fdde
parent6685c058c7bf4444f14fcae61f56b7783b5edebe (diff)
downloadmongo-f126215c5e23637a55c6fda08f5b5d6f1dcbce88.tar.gz
SERVER-7663 - Fix Mongostat usage help from bits to bytes in netIn and netOut
Signed-off-by: Matt Kangas <matt.kangas@10gen.com>
-rw-r--r--src/mongo/tools/stat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/tools/stat.cpp b/src/mongo/tools/stat.cpp
index ca801ecd699..0a9aaee5cda 100644
--- a/src/mongo/tools/stat.cpp
+++ b/src/mongo/tools/stat.cpp
@@ -82,8 +82,8 @@ namespace mongo {
out << " idx miss \t- percent of btree page misses (sampled)\n";
out << " qr|qw \t- queue lengths for clients waiting (read|write)\n";
out << " ar|aw \t- active clients (read|write)\n";
- out << " netIn \t- network traffic in - bits\n";
- out << " netOut \t- network traffic out - bits\n";
+ out << " netIn \t- network traffic in - bytes\n";
+ out << " netOut \t- network traffic out - bytes\n";
out << " conn \t- number of open connections\n";
out << " set \t- replica set name\n";
out << " repl \t- replication type \n";