From f8707b1537b2d83c3f843ccdd43c122bf57a45fc Mon Sep 17 00:00:00 2001 From: jim-p Date: Tue, 6 Sep 2011 13:28:26 -0400 Subject: 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(+) (limited to 'usr/local/www/diag_limiter_info.php') 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; } -- cgit v1.1