forked from stephenlang/system-health-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem-health-check.sh
executable file
·211 lines (155 loc) · 6.09 KB
/
system-health-check.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#!/usr/bin/env bash
# system-health-check.sh
# Server monitoring for Memory, swap, process, storage, and more
# Copyright (c) 2012, Stephen Lang
# All rights reserved.
#
# Git repository available at:
# https://github.com/stephenlang/system-health-check
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# Status page
status_page=/var/www/system-health-check.html
# Enable / Disable Checks
memory_check=off
swap_check=on
load_check=on
storage_check=on
process_check=on
replication_check=off
http_content_check=off
# Configure partitions for storage check
partitions=( / )
# Configure process(es) to check
process_names=( httpd mysqld postfix )
# Configure HTTP Content Check
site=www.example.com
search_string="CHANGEME"
# Configure Thresholds
memory_threshold=99
swap_threshold=80
load_threshold=10
storage_threshold=80
# Logging Metrics - Linux
if [ `uname` = Linux ]; then
load_alarm=`/usr/bin/uptime | awk -F'load average:' '{ print $2}' | sed 's/\./ /g' | awk '{print $1}'`
memory_alarm=`/usr/bin/free -m | grep Mem | awk '{print $3/$2 * 100.0}' | cut -d\. -f1`
swap_alarm=`/usr/bin/free -m | grep Swap | awk '{print $3/$2 * 100.0}' | cut -d\. -f1`
Slave_IO_Running=`/usr/bin/mysql -Bse "show slave status\G" | grep Slave_IO_Running | awk '{ print $2 }'`
Slave_SQL_Running=`/usr/bin/mysql -Bse "show slave status\G" | grep Slave_SQL_Running | awk '{ print $2 }'`
Last_error=`/usr/bin/mysql -Bse "show slave status\G" | grep Last_error | awk -F \: '{ print $2 }'`
http_content_check_alarm=`/usr/bin/curl -sLH "host: $site" localhost | grep "$search_string" |wc -l`
# Logging Metrics - FreeBSD
elif [ `uname` = FreeBSD ]; then
if [ ! -f `which bc` ]; then
echo "Please install bc, or disable memory check"
exit
fi
load_alarm=`/usr/bin/uptime | awk -F'load averages:' '{ print $2}' | sed 's/\./ /g' | awk '{print $1}'`
memory_physmem=`/sbin/sysctl -n hw.physmem`
memory_active=`/sbin/sysctl -n vm.stats.vm.v_active_count`
memory_pagesize=`/sbin/sysctl -n hw.pagesize`
memory_alarm=`echo "($memory_active * $memory_pagesize / 1024) / ($memory_physmem / 1024) * 100" |bc -l |cut -d\. -f1`
swap_alarm=`/usr/sbin/swapinfo -h | grep -v Device | awk '{print $5}' | sed -e 's/\%//g'`
Slave_IO_Running=`/usr/local/bin/mysql -Bse "show slave status\G" | grep Slave_IO_Running | awk '{ print $2 }'`
Slave_SQL_Running=`/usr/local/bin/mysql -Bse "show slave status\G" | grep Slave_SQL_Running | awk '{ print $2 }'`
Last_error=`/usr/local/bin/mysql -Bse "show slave status\G" | grep Last_error | awk -F \: '{ print $2 }'`
http_content_check_alarm=`/usr/local/bin/curl -sLH "host: $site" localhost | grep "$search_string" |wc -l`
else
echo "Cannot detect OS version! Exit"
exit
fi
# Clear status page and initialize variable
> $status_page
ok=1
# Memory Check
if [ $memory_check = on ]; then
if [ $memory_alarm -ge $memory_threshold ]; then
echo "CRITICAL : Memory usage of $memory_alarm% detected." >> $status_page
ok=0
fi
fi
# Swap Check
if [ $swap_check = on ]; then
if [ $swap_alarm -ge $swap_threshold ]; then
echo "CRITICAL : Swap usage of $swap_alarm% detected." >> $status_page
ok=0
fi
fi
# Load Check
if [ $load_check = on ]; then
if [ $load_alarm -ge 10 ]; then
echo "CRITICAL : Load Average of $load_alarm detected." >> $status_page
ok=0
fi
fi
# Storage Check
if [ $storage_check = on ]; then
for i in ${partitions[@]}; do
disk_alarm=`/bin/df -h $i | tail -1 |awk '{print $5}' | sed -e 's/\%//g'`
diskused=`/bin/df -h $i | tail -1 | awk '{print $3}'`
diskmax=`/bin/df -h $i | tail -1 | awk '{print $2}'`
if [ $disk_alarm -ge $storage_threshold ]; then
echo "CRITICAL : $i currently at $disk_alarm% capacity." >> $status_page
ok=0
fi
done;
fi
# Process Check
if [ $process_check = on ]; then
for i in ${process_names[@]}; do
check=`ps ax |grep -v grep | grep -c $i`
if [ $check = 0 ]; then
echo "CRITICAL : $i not running!" >> $status_page
ok=0
fi;
done
fi
# Replication Check
if [ $replication_check = on ]; then
if [ -z $Slave_IO_Running -o -z $Slave_SQL_Running ] ; then
echo "CRITICAL : Replication is not configured or you do not have the required access to MySQL" >> $status_page
ok=0
fi
if [ $Slave_SQL_Running = 'No' ] ; then
echo "CRITICAL : Replication SQL thread not running on server `hostname -s`!" >> $status_page
echo "Last Error: $Last_error" >> $status_page
ok=0
fi
if [ $Slave_IO_Running = 'No' ] ; then
echo "CRITICAL : Replication LOG IO thread not running on server `hostname -s`!" >> $status_page
echo "Last Error:" $Last_error >> $status_page
ok=0
fi
fi
# HTTP Content Check
if [ $http_content_check = on ]; then
if [ ! $http_content_check_alarm -ge '1' ]; then
echo "CRITICAL : HTTP Content Check for $site!" >> $status_page
ok=0
fi
fi
# Change status page if anything failed
if [ $ok = 1 ]; then
echo "OK" >> $status_page
fi