User-Visible afs-monitor Changes
+afs-monitor 2.1 (2010-12-08)
+
+ Fix a bug in check_afs_space introduced in the previous release with
+ checking all partitions on a particular server.
+
afs-monitor 2.0 (2010-12-07)
Initial tarball release, based on check_afsspace 1.16, check_bos 1.7,
- afs-monitor release 2.0
+ afs-monitor release 2.1
(Nagios-compatible probes to monitor AFS servers)
Maintained by Russ Allbery <rra@stanford.edu>
arguments to the command in the service check definition using $ARG1$
and so forth.
+ The scripts all have default timeouts and check_afs_space and
+ check_afs_rxdebug have default thresholds that you may want to change.
+ You may also want to look at the regexes for acceptable bos status lines
+ in check_afs_bos; for example, if you want to get a warning whenever
+ your file server has a core file, you will want to modify the regex to
+ not filter that out.
+
HOMEPAGE AND SOURCE REPOSITORY
The afs-monitor web page at:
--- /dev/null
+ afs-monitor To-Do List
+
+Nagios standards:
+
+ * Add support for the -v option to each script, providing more verbose
+ output.
+
+ * Fix the usage message for invalid options to follow Nagios standards.
+
+ * Fix the output from the -h option to follow Nagios standards.
#!/usr/bin/perl -w
-our $VERSION = '2.0 (2010-12-07)';
+our $VERSION = '2.1 (2010-12-08)';
#
# check_afs_bos -- Monitor AFS bos output for problems in Nagios.
#
#!/usr/bin/perl -w
-our $VERSION = '2.0 (2010-12-07)';
+our $VERSION = '2.1 (2010-12-08)';
#
# check afs_quotas -- Monitor AFS quota usage under Nagios.
#
#!/usr/bin/perl -w
-our $VERSION = '2.0 (2010-12-07)';
+our $VERSION = '2.1 (2010-12-08)';
#
# check_afs_rxdebug -- Nagios AFS server check for waiting connections.
#
#!/usr/bin/perl -w
-our $VERSION = '2.0 (2010-12-07)';
+our $VERSION = '2.1 (2010-12-08)';
#
# check_afs_space -- Monitor AFS disk space usage under Nagios.
#
print "AFS CRITICAL - cannot contact server\n";
exit 2;
}
-$partition .= ':';
+$partition .= ':' if defined $partition;
for (@data) {
my ($part, $free, $total) = (split)[4,5,11];
next if (defined ($partition) and $part ne $partition);
#!/usr/bin/perl -w
-our $VERSION = '2.0 (2010-12-07)';
+our $VERSION = '2.1 (2010-12-08)';
#
# check_afs_udebug -- Check AFS database servers using udebug for Nagios.
#