summaryrefslogtreecommitdiffstats
path: root/usr/local/www/javascript
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2013-07-16 15:08:58 -0400
committerjim-p <jimp@pfsense.org>2013-07-16 15:09:18 -0400
commit8ff9cc387b124f01cf12c61519bc0999968639f9 (patch)
treecf9ee2a11592ab6b8a1af047fadd913b8c779778 /usr/local/www/javascript
parentbc3e2c1426fd7fb09b6619ca91493f891b124631 (diff)
downloadpfsense-8ff9cc387b124f01cf12c61519bc0999968639f9.zip
pfsense-8ff9cc387b124f01cf12c61519bc0999968639f9.tar.gz
Make mbufs update via ajax
Diffstat (limited to 'usr/local/www/javascript')
-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