forked from bdossantos/nagios-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_max_open_files.sh
executable file
·63 lines (56 loc) · 1.3 KB
/
check_max_open_files.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env bash
#
# Check number of opened files
#
# Usage: check_max_open_files.sh [-w warning] [-c critical]
# -w, --warning WARNING Warning value (percent)
# -c, --critical CRITICAL Critical value (percent)
# -h, --help Display this screen
#
# (c) 2014, Benjamin Dos Santos <benjamin.dossantos@gmail.com>
# https://github.com/bdossantos/nagios-plugins
#
while [[ -n "$1" ]]; do
case $1 in
--warning | -w)
warn=$2
shift
;;
--critical | -c)
crit=$2
shift
;;
--help | -h)
sed -n '2,9p' "$0" | tr -d '#'
exit 3
;;
*)
echo "Unknown argument: $1"
exec "$0" --help
exit 3
;;
esac
shift
done
warn=${warn:=75}
crit=${crit:=90}
opened_files=$(cat /proc/sys/fs/file-nr | awk '{ print $1 }')
max_open_files=$(cat /proc/sys/fs/file-max)
if [[ -z $opened_files ]] || [[ -z $max_open_files ]]; then
echo "ERROR - Can't find opened_files / max_open_files"
exit 3
fi
percentage=$((opened_files * 100 / max_open_files))
status="${percentage}% (${opened_files} of ${max_open_files}) open files"
if [[ $percentage -gt $crit ]]; then
echo "CRITICAL - ${status}"
exit 2
elif [[ $percentage -gt $warn ]]; then
echo "WARNING - ${status}"
exit 1
else
echo "OK - ${status}"
exit 0
fi
echo "UNKNOWN - Error"
exit 3