]> git.michaelhowe.org Git - packages/a/afs-monitor.git/commitdiff
Don't use -allconn -rxstats. We aren't paying any attention to the
authorRuss Allbery <rra@stanford.edu>
Fri, 13 Feb 2004 01:08:27 +0000 (01:08 +0000)
committerRuss Allbery <rra@stanford.edu>
Fri, 13 Feb 2004 01:08:27 +0000 (01:08 +0000)
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

index 5ac6ad2d7ddd60ae3e623e567ef2d03c4449e145..13231986013bb0822688a269cde6204bc6656342 100755 (executable)
@@ -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 (<RXDEBUG>) {