adding missing logging for 8192 fast allocators
This commit is contained in:
parent
70ac5ffda0
commit
f73aad863b
|
@ -2376,6 +2376,7 @@ void outOfMemory() {
|
|||
TRACEALLOCATOR(1024);
|
||||
TRACEALLOCATOR(2048);
|
||||
TRACEALLOCATOR(4096);
|
||||
TRACEALLOCATOR(8192);
|
||||
g_traceBatch.dump();
|
||||
#endif
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue