-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcheck_memory.sh
executable file
·63 lines (58 loc) · 1.74 KB
/
check_memory.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 memory usage
#
# Usage: check_memory.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:=90}
crit=${crit:=95}
meminfo=$(cat /proc/meminfo)
memory_total=$(echo "$meminfo" | awk '/MemTotal/ { print int($2 / 1024) }')
memory_free=$(echo "$meminfo" | awk '/MemFree/ { print int($2 / 1024) }')
buffers=$(echo "$meminfo" | awk '/Buffers/ { print int($2 / 1024) }')
cached=$(echo "$meminfo" | awk '/^Cached: */ { print int($2 / 1024) }')
total_used_memory=$((memory_total - memory_free))
non_cached_buffer_used_memory=$((total_used_memory - (buffers + cached)))
percentage=$((non_cached_buffer_used_memory * 100 / memory_total))
status="${percentage}% of memory used (${non_cached_buffer_used_memory} of ${memory_total} MB)"
if [[ -z $percentage ]]; then
echo "UNKNOWN - Error"
exit 3
elif [[ $percentage -gt $crit ]]; then
echo "CRITICAL - ${status} | used=${non_cached_buffer_used_memory} total=${memory_total}"
exit 2
elif [[ $percentage -gt $warn ]]; then
echo "WARNING - ${status} | used=${non_cached_buffer_used_memory} total=${memory_total}"
exit 1
else
echo "OK - ${status} | used=${non_cached_buffer_used_memory} total=${memory_total}"
exit 0
fi