From: Russ Allbery Date: Fri, 13 Feb 2004 01:08:27 +0000 (+0000) Subject: Don't use -allconn -rxstats. We aren't paying any attention to the X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=f2673cf8477d8a458df373ffc0adbdffd438c69b;p=packages%2Fa%2Fafs-monitor.git 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. --- 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 () {