Closed Menduist closed 2 years ago
getOccupiedMem & getTotalMem are thread-specific, and since nim-metrics is in his own thread, the nim_gc_mem_bytes & nim_gc_mem_occupied_bytes are not really relevant.
nim-metrics
nim_gc_mem_bytes
nim_gc_mem_occupied_bytes
Fortunately, dumpHeapInstances is global, so no issues there
dumpHeapInstances
Yes, known issue. Just have to get around to fixing it.
getOccupiedMem & getTotalMem are thread-specific, and since
nim-metrics
is in his own thread, thenim_gc_mem_bytes
&nim_gc_mem_occupied_bytes
are not really relevant.Fortunately,
dumpHeapInstances
is global, so no issues there