From da2bee021abf728c65847699d1593f31283cf7d8 Mon Sep 17 00:00:00 2001 From: jim-p Date: Tue, 6 Sep 2011 13:28:26 -0400 Subject: [PATCH] Also show queues on limiter info page, so that the child queues of limiter pipes can be viewed. (See ticket #1843) --- usr/local/www/diag_limiter_info.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/usr/local/www/diag_limiter_info.php b/usr/local/www/diag_limiter_info.php index 6f525dcefb..c2f68aa82a 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; }