summaryrefslogtreecommitdiffstats
path: root/contrib/check_inodes-freebsd.pl
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/check_inodes-freebsd.pl')
-rw-r--r--contrib/check_inodes-freebsd.pl127
1 files changed, 0 insertions, 127 deletions
diff --git a/contrib/check_inodes-freebsd.pl b/contrib/check_inodes-freebsd.pl
deleted file mode 100644
index d66e5e3..0000000
--- a/contrib/check_inodes-freebsd.pl
+++ /dev/null
@@ -1,127 +0,0 @@
1#!/usr/bin/perl
2
3# check_inodes.pl for FreeBSD
4# Designed on FreeBSD 4.6 (although this should not matter)
5# parses df output, splits, and then takes variables
6# df.pl -f mountpoint -w warningnumber -c critical number
7# USE NUMBERS AND NOT PERCENTS FOR wanring and critical values
8# -h is help
9# -v is version
10# Mountpoints:
11# like / or /usr or /var (whatever you mount drives NOT the device names)
12# Andrew Ryder - 20020804 - atr@mrcoffee.org
13
14
15use strict;
16use Getopt::Long;
17use vars qw($opt_V $opt_h $opt_w $opt_c $opt_f $verbose $PROGNAME);
18use lib "/usr/local/libexec/nagios" ;
19use utils qw($TIMEOUT %ERRORS &print_revision &support);
20
21my $df = "/bin/df";
22my $grep = "/usr/bin/grep";
23
24$PROGNAME="df.pl";
25
26sub print_help ();
27sub print_usage ();
28
29
30$ENV{'PATH'}='';
31$ENV{'BASH_ENV'}='';
32$ENV{'ENV'}='';
33
34Getopt::Long::Configure('bundling');
35GetOptions
36 ("V" => \$opt_V, "version" => \$opt_V,
37 "h" => \$opt_h, "help" => \$opt_h,
38 "w=s" => \$opt_w, "warning=s" => \$opt_w,
39 "c=s" => \$opt_c, "critical=s" => \$opt_c,
40 "f=s" => \$opt_f, "filesystem=s" => \$opt_f);
41
42
43if ($opt_V) {
44 print_revision($PROGNAME,'$Revision: 72 $ ');
45 exit $ERRORS{'OK'};
46}
47
48if ($opt_h) {
49 print_help();
50 exit $ERRORS{'OK'};
51}
52
53($opt_w) || ($opt_w = shift) || ($opt_w = 50);
54my $warning = $1 if ($opt_w =~ /([0-9]+)/);
55
56($opt_c) || ($opt_c = shift) || ($opt_c = 75);
57my $critical = $1 if ($opt_c =~ /([0-9]+)/);
58
59if ($opt_c < $opt_w) {
60 print "Critical offset should be larger than warning offset\n";
61 print_usage();
62 exit $ERRORS{"UNKNOWN"};
63}
64
65($opt_f) || ($opt_f = "/");
66
67
68unless (-e $df) {
69 print "UNKNOWN: $df is not where df is\n";
70 exit $ERRORS{'UNKNOWN'};
71 }
72
73unless (-e $grep) {
74 print "UNKNOWN: $grep is not where grep is\n";
75 exit $ERRORS{'UNKNOWN'};
76 }
77
78unless (-d $opt_f) {
79 print "UNKNOWN: $opt_f is not a mount point\n";
80 exit $ERRORS{'UNKNOWN'};
81 }
82
83
84my $state = $ERRORS{'UNKNOWN'};
85my $answer;
86
87open(DF, "$df -i $opt_f| $grep -v Filesystem |");
88
89while (<DF>) {
90
91 my ($fs,$onek,$used,$avail,$capacity,$iused,$ifree,$ipercent,$mounted) = split;
92 $ipercent =~ s/%//s;
93
94 if ($ipercent > $opt_w) {
95 $state = $ERRORS{'WARNING'};
96 $answer = "WARNING: $ipercent percent inodes free on $opt_f\n";
97 } elsif ($ipercent > $opt_w) {
98 $state = $ERRORS{'CRITCAL'};
99 $answer = "CRITICAL: $ipercent percent inodes free on $opt_f\n";
100 } elsif ($ipercent < $opt_w) {
101 $state = $ERRORS{'OK'};
102 $answer = "OK: $ipercent percent inodes free on $opt_f\n";
103 }
104}
105
106close(DF);
107
108print "$answer";
109exit $state;
110
111sub print_usage () {
112 print "Usage: $PROGNAME <filesystem> [-w <warn>] [-c <crit>]\n";
113 print "Example: $PROGNAME /dev/ad0s1a -w 50 -c 75\n";
114}
115
116sub print_help () {
117 print_revision($PROGNAME,'$Revision: 72 $');
118 print "Copyright (c) 2002 Andrew Ryder\n";
119 print "\n";
120 print_usage();
121 print "\n";
122 print "<warn> = Inode Percent at which a warning message is returned. Defaults to 50.\n";
123 print "<crit> = Inode Percent at which a critical message is returned..\n Defaults to 75.\n\n";
124 support();
125}
126
127