adding missing logging for 8192 fast allocators

This commit is contained in:
Evan Tschannen 2019-03-20 13:48:45 -07:00
parent 70ac5ffda0
commit f73aad863b
2 changed files with 3 additions and 0 deletions

View File

@ -2376,6 +2376,7 @@ void outOfMemory() {
TRACEALLOCATOR(1024);
TRACEALLOCATOR(2048);
TRACEALLOCATOR(4096);
TRACEALLOCATOR(8192);
g_traceBatch.dump();
#endif

View File

@ -111,6 +111,7 @@ SystemStatistics customSystemMonitor(std::string eventName, StatisticsState *sta
.DETAILALLOCATORMEMUSAGE(1024)
.DETAILALLOCATORMEMUSAGE(2048)
.DETAILALLOCATORMEMUSAGE(4096)
.DETAILALLOCATORMEMUSAGE(8192)
.detail("HugeArenaMemory", g_hugeArenaMemory);
TraceEvent n("NetworkMetrics");
@ -261,6 +262,7 @@ SystemStatistics customSystemMonitor(std::string eventName, StatisticsState *sta
TRACEALLOCATOR(1024);
TRACEALLOCATOR(2048);
TRACEALLOCATOR(4096);
TRACEALLOCATOR(8192);
}
}
#endif