From f2673cf8477d8a458df373ffc0adbdffd438c69b Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Fri, 13 Feb 2004 01:08:27 +0000 Subject: [PATCH] Don't use -allconn -rxstats. We aren't paying any attention to the statistics, just the mode of the connection, and -allconn just adds in the (thousands of) idle connections. Let's assume that an idle connection can't also be blocked. --- check_rxdebug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_rxdebug b/check_rxdebug index 5ac6ad2..1323198 100755 --- a/check_rxdebug +++ b/check_rxdebug @@ -10,8 +10,8 @@ $rxdebug = '/usr/local/bin/rxdebug'; @failures=(); $hiWaterMark=8; -# Get the output of rxdebug $server -allconn -rxstats -open(RXDEBUG, "$rxdebug $server -allconn -rxstats|") +# Get the output of rxdebug $server. +open(RXDEBUG, "$rxdebug $server |") || die("Can't open rxdebug\n"); $blocked{$server} = 0; while () { -- 2.39.5