-
Notifications
You must be signed in to change notification settings - Fork 2
/
check-memory-pcnt.sh
executable file
·73 lines (62 loc) · 1.64 KB
/
check-memory-pcnt.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
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env bash
#
# Evaluate free system memory from Linux based systems based on percentage
# This was forked from Sensu Community Plugins
# Date: 2007-11-12
# Author: Thomas Borger - ESG
# Date: 2012-04-02
# Modified: Norman Harman - norman.harman@mutualmobile.com
# Date: 2013-9-30
# Modified: Mario Harvey - Zumetrics
# get arguments
# #RED
while getopts 'w:c:hp' OPT; do
case $OPT in
w) WARN=$OPTARG;;
c) CRIT=$OPTARG;;
h) hlp="yes";;
p) perform="yes";;
*) unknown="yes";;
esac
done
# usage
HELP="
usage: $0 [ -w value -c value -p -h ]
-w --> Warning Percentage < value
-c --> Critical Percentage < value
-p --> print out performance data
-h --> print this help screen
"
if [ "$hlp" = "yes" ]; then
echo "$HELP"
exit 0
fi
WARN=${WARN:=0}
CRIT=${CRIT:=0}
#Get total memory available on machine
TotalMem=$(free -m | grep Mem | awk '{ print $2 }')
#Determine amount of free memory on the machine
FreeMem=$(free -m | grep buffers/cache | awk '{ print $4 }')
#Get percentage of free memory
FreePer=$(echo "scale=3; $FreeMem / $TotalMem * 100" | bc -l| cut -d "." -f1)
#Get actual memory usage percentage by subtracting free memory percentage from 100
UsedPer=$((100-$FreePer))
if [ "$UsedPer" = "" ]; then
echo "MEM UNKNOWN -"
exit 3
fi
if [ "$perform" = "yes" ]; then
output="system memory usage: $UsedPer% | free memory="$UsedPer"MB;$WARN;$CRIT;0"
else
output="system memory usage: $UsedPer%"
fi
if (( $UsedPer >= $CRIT )); then
echo "MEM CRITICAL - $output"
exit 2
elif (( $UsedPer >= $WARN )); then
echo "MEM WARNING - $output"
exit 1
else
echo "MEM OK - $output"
exit 0
fi