From 6e82b67a67edf2ca22d7bfa1c2061e56d7c94dea Mon Sep 17 00:00:00 2001 From: Mark Benvenuto Date: Wed, 6 Jun 2018 14:45:29 -0400 Subject: SERVER-35444 Heap stacks should not be included in serverStatus with heapProfilingEnabled --- src/mongo/util/heap_profiler.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/mongo/util/heap_profiler.cpp') diff --git a/src/mongo/util/heap_profiler.cpp b/src/mongo/util/heap_profiler.cpp index de2024ce2db..7f42a8a1c9c 100644 --- a/src/mongo/util/heap_profiler.cpp +++ b/src/mongo/util/heap_profiler.cpp @@ -587,7 +587,6 @@ private: shortName << "stack" << stackInfo->stackNum; BSONObjBuilder stackBuilder(stacksBuilder.subobjStart(shortName.str())); stackBuilder.appendNumber("activeBytes", stackInfo->activeBytes); - stackBuilder.append("stack", stackInfo->stackObj); } stacksBuilder.doneFast(); -- cgit v1.2.1