From: Costa Tsaousis Date: Sat, 5 Nov 2016 01:46:55 +0000 (+0200) Subject: Merge pull request #1208 from shadycuz/dashboard_info_update X-Git-Tag: v1.5.0~200 X-Git-Url: https://arthur.barton.de/gitweb/?a=commitdiff_plain;h=9c540886a44341ad4be4163b9eb88cb8effe90cd;hp=df8d5d3c8f856ed51a9661ee46d63717a44c6a8e;p=netdata.git Merge pull request #1208 from shadycuz/dashboard_info_update Added info: to the charts in the // Memory Section --- diff --git a/web/dashboard_info.js b/web/dashboard_info.js index 9ee84fb9..57ad3dad 100644 --- a/web/dashboard_info.js +++ b/web/dashboard_info.js @@ -393,6 +393,26 @@ netdataDashboard.context = { 'mem.committed': { colors: NETDATA.colors[3] }, + + 'mem.pgfaults': { + info: 'Page Faults, read from /proc/vmstat. Some minor page faults are expected and considered normal, while a high amount of major page faults could be a sign you need to increase the amount of RAM.' + }, + + 'mem.committed': { + info: 'Committed Memory, read from /proc/meminfo, is the sum of all memory which has been allocated by processes.' + }, + + 'mem.writeback': { + info: 'Read from /proc/meminfo, Dirty is the amount of memory waiting to be written to disk. Writeback is how much memory is actively being written to disk.' + }, + + 'mem.kernel': { + info: 'Read from /proc/meminfo, This chart displays the total ammount of memory being used by the kernel. Slab is the amount of memory used by the kernel to cache data structures for its own use. KernelStack is the amount of memory allocated for each task done by the kernel. PageTables is the amount of memory decicated to the lowest level of page tables (A page table is used to turn a virtual address into a physical memory address). VmallocUsed is the amount of memory being used as virtual address space.' + }, + + 'mem.slab': { + info: 'Read from /proc/meminfo, reclaimable is the amount of memory which the kernel can reuse. unreclaimable can not be reused even when the kernel is lacking memory.' + }, // ------------------------------------------------------------------------ // network interfaces