summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/biggie/biggie_server_status.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/biggie/biggie_server_status.cpp')
-rw-r--r--src/mongo/db/storage/biggie/biggie_server_status.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/storage/biggie/biggie_server_status.cpp b/src/mongo/db/storage/biggie/biggie_server_status.cpp
index 4bef5903c57..f2566a59efe 100644
--- a/src/mongo/db/storage/biggie/biggie_server_status.cpp
+++ b/src/mongo/db/storage/biggie/biggie_server_status.cpp
@@ -37,6 +37,7 @@
#include "mongo/db/concurrency/d_concurrency.h"
#include "mongo/db/storage/biggie/biggie_kv_engine.h"
#include "mongo/db/storage/biggie/biggie_record_store.h"
+#include "mongo/db/storage/biggie/store.h"
#include "mongo/logv2/log.h"
namespace mongo {
@@ -59,7 +60,9 @@ BSONObj BiggieServerStatusSection::generateSection(OperationContext* opCtx,
}
BSONObjBuilder bob;
- bob.append("statisitcs", "TODO SERVER-49055");
+ bob.append("totalMemoryUsage", StringStore::totalMemory());
+ bob.append("totalNodes", StringStore::totalNodes());
+ bob.append("averageChildren", StringStore::averageChildren());
return bob.obj();
}