From c5f3cb1b657b5ce754be422f4d9dc67e3749b3c3 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 25 Sep 2018 11:23:37 +0200 Subject: [PATCH] Update diag_limiter_info.php (#2756) --- src/www/diag_limiter_info.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/www/diag_limiter_info.php b/src/www/diag_limiter_info.php index c35f668fe..9d8bcb43a 100644 --- a/src/www/diag_limiter_info.php +++ b/src/www/diag_limiter_info.php @@ -30,7 +30,7 @@ require_once("guiconfig.inc"); if (isset($_POST['getactivity'])) { - $text = `/sbin/ipfw sched show`; + $text = `/sbin/ipfw pipe show`; if ($text == "") { $text = gettext('We could not find any limiters on this system.'); } @@ -41,6 +41,11 @@ if (isset($_POST['getactivity'])) { echo "\n\nQueues:\n"; echo $text; } + $text = `/sbin/ipfw sched show`; + if ($text != "") { + echo "\n\nSchedulers:\n"; + echo $text; + } exit; }