|
@@ -65,3 +65,36 @@ template(name='statistics')
|
|
|
tr
|
|
|
th {{_ 'OS_Cpus'}}
|
|
|
td {{statistics.os.cpus.length}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_total_heap_size'}}
|
|
|
+ td {{bytesToSize statistics.nodeHeapStats.totalHeapSize}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_total_heap_size_executable'}}
|
|
|
+ td {{bytesToSize statistics.nodeHeapStats.totalHeapSizeExecutable}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_total_physical_size'}}
|
|
|
+ td {{bytesToSize statistics.nodeHeapStats.totalPhysicalSize}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_total_available_size'}}
|
|
|
+ td {{bytesToSize statistics.nodeHeapStats.totalAvailableSize}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_used_heap_size'}}
|
|
|
+ td {{bytesToSize statistics.nodeHeapStats.usedHeapSize}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_heap_size_limit'}}
|
|
|
+ td {{bytesToSize statistics.nodeHeapStats.heapSizeLimit}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_malloced_memory'}}
|
|
|
+ td {{bytesToSize statistics.nodeHeapStats.mallocedMemory}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_peak_malloced_memory'}}
|
|
|
+ td {{bytesToSize statistics.nodeHeapStats.peakMallocedMemory}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_does_zap_garbage'}}
|
|
|
+ td {{statistics.nodeHeapStats.doesZapGarbage}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_number_of_native_contexts'}}
|
|
|
+ td {{statistics.nodeHeapStats.numberOfNativeContexts}}
|
|
|
+ tr
|
|
|
+ th {{_ 'Node_heap_number_of_detached_contexts'}}
|
|
|
+ td {{statistics.nodeHeapStats.numberOfDetachedContexts}}
|