summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2011-09-06 13:28:26 -0400
committerjim-p <jimp@pfsense.org>2011-09-06 13:29:37 -0400
commitda2bee021abf728c65847699d1593f31283cf7d8 (patch)
tree5ce215798da416cf35ee53214ae997da1144634a
parent20a35f92722b719e3ffae81bf4f8dd5dc5c88edd (diff)
downloadpfsense-da2bee021abf728c65847699d1593f31283cf7d8.zip
pfsense-da2bee021abf728c65847699d1593f31283cf7d8.tar.gz
Also show queues on limiter info page, so that the child queues of limiter pipes can be viewed. (See ticket #1843)
-rw-r--r--usr/local/www/diag_limiter_info.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/usr/local/www/diag_limiter_info.php b/usr/local/www/diag_limiter_info.php
index 6f525dc..c2f68aa 100644
--- a/usr/local/www/diag_limiter_info.php
+++ b/usr/local/www/diag_limiter_info.php
@@ -49,7 +49,13 @@ if($_REQUEST['getactivity']) {
$text = `/sbin/ipfw pipe show`;
if($text == "")
$text = "We could not find any limiters on this system.";
+ echo "Limiters:\n";
echo $text;
+ $text = `/sbin/ipfw queue show`;
+ if($text != "") {
+ echo "\n\nQueues:\n";
+ echo $text;
+ }
exit;
}
OpenPOWER on IntegriCloud