summaryrefslogtreecommitdiffstats
path: root/web/index.html
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-02-10 00:40:08 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-02-10 00:40:08 +0200
commit894141ec4a8705690810cf5a0b886244bd6312a8 (patch)
tree09e1a86cb7cc335d8dde8d552dc2ffd83e10d0be /web/index.html
parentde48d035429efb585e608739a709262a3c637b79 (diff)
added proc_loadavg.cv1.0rc
Diffstat (limited to 'web/index.html')
-rwxr-xr-xweb/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html
index 71a0d03cda..6ab15385ca 100755
--- a/web/index.html
+++ b/web/index.html
@@ -946,6 +946,30 @@ var chartData = {
info: 'System swap memory, read from <code>/proc/meminfo</code>.'
},
+ 'mem.ksm_savings': {
+ heads: [
+ gaugeChart('Saved', '12%', 'savings', '#0099CC')
+ ]
+ },
+
+ 'mem.ksm_ratios': {
+ heads: [
+ function(id) {
+ return '<div data-netdata="' + id + '"'
+ + ' data-gauge-max-value="100"'
+ + ' data-chart-library="gauge"'
+ + ' data-title="Savings"'
+ + ' data-units="percentage %"'
+ + ' data-gauge-adjust="width"'
+ + ' data-width="12%"'
+ + ' data-before="0"'
+ + ' data-after="-CHART_DURATION"'
+ + ' data-points="CHART_DURATION"'
+ + ' role="application"></div>';
+ }
+ ]
+ },
+
'mem.committed': {
colors: NETDATA.colors[3]
},