summaryrefslogtreecommitdiffstats
path: root/usr/local/www/javascript/index/ajax.js
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/www/javascript/index/ajax.js')
-rw-r--r--usr/local/www/javascript/index/ajax.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/usr/local/www/javascript/index/ajax.js b/usr/local/www/javascript/index/ajax.js
index 5cae407..d2a6536 100644
--- a/usr/local/www/javascript/index/ajax.js
+++ b/usr/local/www/javascript/index/ajax.js
@@ -43,6 +43,7 @@ function stats(x) {
updateGatewayStats(values[8]);
updateCpuFreq(values[9]);
updateLoadAverage(values[10]);
+ updateMbuf(values[11]);
}
function updateMemory(x) {
@@ -54,6 +55,15 @@ function updateMemory(x) {
jQuery("#memwidthb").css('width', (100 - x) + 'px');
}
+function updateMbuf(x) {
+ if(jQuery('#mbufusagemeter'))
+ jQuery("#mbufusagemeter").html(x + '%');
+ if(jQuery('#mbufwidtha'))
+ jQuery("#mbufwidtha").css('width',x + 'px');
+ if(jQuery('#mbufwidthb'))
+ jQuery("#mbufwidthb").css('width', (100 - x) + 'px');
+}
+
function updateCPU(x) {
if(jQuery('#cpumeter'))
jQuery("#cpumeter").html(x + '%');
OpenPOWER on IntegriCloud