summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-11-11 09:16:28 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-11-11 09:16:28 +0200
commitbcdcc1c3d0df7e344e4cc1cbbcf01f2c46079bde (patch)
treeafaea0b83fbca19e56748de96b5a005f1ff388b3 /web
parenta07c0acc8429f770d8abbcfea34a705b2d756de3 (diff)
the overview charts now show used swap and used ram; fixes #549
Diffstat (limited to 'web')
-rw-r--r--web/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/index.html b/web/index.html
index 0523f60e59..8c7e7ae329 100644
--- a/web/index.html
+++ b/web/index.html
@@ -1115,10 +1115,10 @@
if(typeof charts['system.swap'] !== 'undefined')
head += '<div style="margin-right: 10px;" data-netdata="system.swap"'
- + ' data-dimensions="free"'
+ + ' data-dimensions="used"'
+ ' data-append-options="percentage"'
+ ' data-chart-library="easypiechart"'
- + ' data-title="Free Swap"'
+ + ' data-title="Used Swap"'
+ ' data-units="%"'
+ ' data-easypiechart-max-value="100"'
+ ' data-width="8%"'
@@ -1209,10 +1209,10 @@
if(typeof charts['system.ram'] !== 'undefined')
head += '<div style="margin-right: 10px;" data-netdata="system.ram"'
- + ' data-dimensions="cached|free"'
+ + ' data-dimensions="used|buffers"'
+ ' data-append-options="percentage"'
+ ' data-chart-library="easypiechart"'
- + ' data-title="Available RAM"'
+ + ' data-title="Used RAM"'
+ ' data-units="%"'
+ ' data-easypiechart-max-value="100"'
+ ' data-width="8%"'