]> arthur.barton.de Git - netdata.git/commitdiff
fixed mem.committed duplicate key
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Wed, 1 Feb 2017 23:21:57 +0000 (01:21 +0200)
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Fri, 3 Feb 2017 20:57:57 +0000 (22:57 +0200)
web/dashboard_info.js

index 7d7f726e3b3783d15ec857d5676737cd5abea66a..d6ffba69a803c658649da9c800510fc2bc6c9db7 100644 (file)
@@ -412,16 +412,13 @@ netdataDashboard.context = {
         ]
     },
 
-    'mem.committed': {
-        colors: NETDATA.colors[3]
-    },
-    
     'mem.pgfaults': {
        info: 'A <a href="https://en.wikipedia.org/wiki/Page_fault" target="_blank">page fault</a> is a type of interrupt, called trap, raised by computer hardware when a running program accesses a memory page that is mapped into the virtual address space, but not actually loaded into main memory. If the page is loaded in memory at the time the fault is generated, but is not marked in the memory management unit as being loaded in memory, then it is called a <b>minor</b> or soft page fault. A <b>major</b> page fault is generated when the system needs to load the memory page from disk or swap memory. These values are read from <code>/proc/vmstat</code>.'
     },
 
     'mem.committed': {
         info: 'Committed Memory, read from <code>/proc/meminfo</code>, is the sum of all memory which has been allocated by processes.'
+        colors: NETDATA.colors[3]
     },
 
     'mem.writeback': {