-
Notifications
You must be signed in to change notification settings - Fork 8
/
check_mon_scripts_running
executable file
·372 lines (339 loc) · 11.3 KB
/
check_mon_scripts_running
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
#! /usr/bin/env bash
###############################################################################
# Monitor DB2 with Nagios
# Copyright 2013,2014,2015 Andres Gomez Casanova
# https://github.com/angoca/monitor-db2-with-nagios
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###############################################################################
# This script checks the quantity of scripts running on the server with the
# same user id that this script runs, and that the program running starts with
# 'check_'. This helps to control hung processes or long-running processes,
# that sometimes could exhaust the server.
#
# The script does not need special permissions on the server, just list the
# running processes.
#
# # 'check_running_scripts' command definition
# define command {
# command_name check_running_scripts
# command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -l nagios -t 20 -C "scripts/check_running_scripts"
# }
# define service{
# host_name db2sever
# service_description Check running monitor scripts
# check_command check_running_scripts
# use generic-service
# }
#
# When using NRPE:
#
# In the database server:
#
# command[check_running_scripts]=/home/nagios/scripts/check_running_scripts
#
# Then modify the path according to your script location and thresholds.
#
# In the Nagios server:
#
# define service{
# host_name db2server
# service_description Check running monitor scripts
# check_command check_nrpe_1arg!check_running_scripts
# use generic-service
# }
#
# Parameters:
# -c | --critical : Quantity of monitor scripts currently running that is
# considered as critical.
# -h | --help : Show the help of this script.
# -K | --mk : Change the output for Check_MK.
# -T | --trace : Trace mode. Writes output in /tmp.
# -v | --verbose : Execute the program in verbose mode.
# -V | --version : Show the current version of this script.
# -w | --warning : Quantity of monitor scripts currently running that is
# considered as warning.
#
# In AIX, the long name options are not supported.
#
# The exit codes are the standard for Nagios.
#
# 0 The plugin was able to check the service and it appeared to be functioning
# properly.
# 1 The plugin was able to check the service, but it appeared to be above some
# "warning" threshold or did not appear to be working properly.
# 2 The plugin detected that either the service was not running or it was above
# some "critical" threshold.
# 3 Invalid command line arguments were supplied to the plugin or low-level
# failures internal to the plugin (such as unable to fork, or open a tcp
# socket) that prevent it from performing the specified operation.
# Higher-level errors (such as name resolution errors, socket timeouts, etc)
# are outside of the control of plugins and should generally NOT be reported
# as UNKNOWN states.
#
# Author: Andres Gomez Casanova
# Version: v1.2 2015-10-15
# Flag for debugging.
#set -xv
# Locale to print messages in English. Prevent language problems.
export LANG=en_US
# Version of this script.
function print_revision {
echo Andres Gomez Casanova - AngocA
echo v1.0 2015-10-15
}
# Function to show the help
function print_usage {
/bin/cat <<__EOT
Usage: ${1} { [-c][-w][-K] | -h | -V } [-T][-v]
__EOT
}
function print_help {
print_revision
print_usage ${1}
# Max 80 chars width.
/bin/cat <<__EOT
-------------------------------------------------------------------------------
Checks the quantity of monitor scripts currently running on the server.
-c | --critical INTEGER
Quantity of running scripts to be considered as critical.
Default 20.
-h | --help
Shows the current documentation.
-K | --mk
Changes the output to be compatible with Check_MK.
-T | --trace
Trace mode: writes date and output in /tmp.
-v | --verbose
Executes the script in verbose mode (multiple times).
-V | --version
Shows the current version of this script.
-w | --warning INTEGER
Quantity of running scripts to be considered as critical.
Default 15.
In AIX, the long name options are not supported.
__EOT
}
# Variable to control the flow execution. Prevent Spaghetti code.
CONTINUE=true
# Nagios return codes
OK=0
WARNING=1
CRITICAL=2
UNKNOWN=3
# This is the returned code.
RETURN=${UNKNOWN}
# Nagios Output
# Text output 80 chars | Optional Perf Data Line 1
# Long text Line 1
# Long text Line 2 | Optional Perf Data Line 2
# Optional Perf Data Line 3
OUTPUT=
PERFORMANCE=
LONG_OUTPUT=
LONG_PERFORMANCE=
PERF_MK="-"
APPL_NAME=$(basename ${0})
echo "$(date +"%Y-%m-%d-%H.%M.%S") $$ Started ${APPL_NAME} $@" >> /tmp/${APPL_NAME}.log
# Checks the lock file does not exist.
# The lock file is the way the command was called with its parameters
# without spaces.
COPY_ARGS=("${@}")
LOCK_FILE=
for VALUE in "${COPY_ARGS[@]}" ; do
LOCK_FILE="${LOCK_FILE}${VALUE}"
done
LOCK_FILE=${LOCK_FILE//\//}
LOCK_FILE=${LOCK_FILE//\\/}
LOCK_FILE=${LOCK_FILE//\:/}
LOCK_FILE=${LOCK_FILE//\*/}
LOCK_FILE=${LOCK_FILE//\|/}
LOCK_FILE="/tmp/${APPL_NAME}${LOCK_FILE}.lock"
if [[ ! -r ${LOCK_FILE} ]] ; then
echo $$ > ${LOCK_FILE}
LOCKED=true
else
# If it exist, then check if the process is running.
EXIST=$(ps -ef | grep $(cat ${LOCK_FILE}) | grep ${APPL_NAME})
# If process is not running, delete it.
if [[ ${EXIST} == "" ]] ; then
rm ${LOCK_FILE}
if [[ ! -r ${LOCK_FILE} ]] ; then
echo $$ > ${LOCK_FILE}
LOCKED=true
else
OUTPUT="The lock file cannot be replaced: ${LOCK_FILE}"
CONTINUE=false
RETURN=${UNKNOWN}
fi
else
OUTPUT="An instance of the script with the same parameters is already running."
CONTINUE=false
RETURN=${UNKNOWN}
fi
fi
# Checks the operating system. geopt works different in AIX than in Linux.
OS=$(uname)
if [[ "${OS:0:5}" == "Linux" ]] ; then
# The following requires GNU getopt. See the following discussion.
# http://stackoverflow.com/questions/402377
TEMP=$(getopt -o c:hKTvVw: --long critical:,help,mk,trace,verbose,version,warning: \
-n ${APPL_NAME} -- "${@}")
elif [[ "${OS:0:3}" == "AIX" ]] ; then
set -- $(getopt c:hKTvVw: ${*})
elif [[ "${OS:0:6}" == "Darwin" || "${OS:0:5}" == "SunOS" || "${OS:0:5}" == "HP-UX" ]] ; then
echo "This plugin is not yet supported in your platform."
echo "Please create a ticket in GitHub if you want to enable your current platform."
echo "https://github.com/angoca/monitor-db2-with-nagios/issues"
RETURN=${UNKNOWN}
CONTINUE=false
elif [[ "${OS:0:6}" == "CYGWIN" ]] ; then
echo "This plugin is not supported in Cygwin"
RETURN=${UNKNOWN}
CONTINUE=false
else
echo "The platform is unknown: ${OS}"
echo "Please create a ticket in GitHub: https://github.com/angoca/monitor-db2-with-nagios/issues"
RETURN=${UNKNOWN}
CONTINUE=false
fi
if [[ ${?} -ne 0 ]] ; then
print_usage ${APPL_NAME}
RETURN=${UNKNOWN}
CONTINUE=false
fi
if [[ ${CONTINUE} == true ]] ; then
if [[ "${OS}" == "Linux" ]] ; then
# Note the quotes around ${TEMP}: they are essential!
eval set -- "${TEMP}"
fi
HELP=false
VERSION=false
CHECK_MK=false
# Verbosity level
VERBOSE=0
# Trace activated
TRACE=false
LOG=/tmp/${APPL_NAME}.log
WARNING_THRES=15
CRITICAL_THRES=20
if [[ "${OS:0:5}" == "Linux" ]] ; then
while true; do
case "${1}" in
-c | --critical ) CRITICAL_THRES=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
-h | --help ) HELP=true ; shift ;;
-K | --mk ) CHECK_MK=true ; shift ;;
-T | --trace ) TRACE=true ; shift ;;
-v | --verbose ) VERBOSE=$(( ${VERBOSE} + 1 )) ; shift ;;
-V | --version ) VERSION=true ; shift ;;
-w | --warning ) WARNING_THRES=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
-- ) shift ; break ;;
* ) break ;;
esac
done
elif [[ "${OS:0:3}" = "AIX" ]] ; then
while [[ $1 != -- ]] ; do
case "${1}" in
-c) CRITICAL_THRES=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
-h) HELP=true ; shift ;;
-K) CHECK_MK=true ; shift ;;
-T) TRACE=true ; shift ;;
-v) VERBOSE=$(( ${VERBOSE} + 1 )) ; shift ;;
-V) VERSION=true ; shift ;;
-w) WARNING_THRES=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
* ) break ;;
esac
done
fi
fi
if [[ ${TRACE} == true ]] ; then
echo ">>>>>" >> ${LOG}
date >> ${LOG}
echo "PID ${$}" >> ${LOG}
fi
ECHO="help:${HELP}, version:${VERSION}, verbose:${VERBOSE}"
ECHO="${ECHO}, warning:${WARNING_THRES}, critical:${CRITICAL_THRES}"
ECHO="${ECHO}, check_mk:${CHECK_MK}"
if [[ ${VERBOSE} -ge 2 ]] ; then
echo ${ECHO}
fi
if [[ ${TRACE} == true ]] ; then
echo "PARAMS:${ECHO}" >> ${LOG}
fi
if [[ ${CONTINUE} == true && ${HELP} == true ]] ; then
print_help ${APPL_NAME}
RETURN=${UNKNOWN}
CONTINUE=false
fi
if [[ ${CONTINUE} == true && ${VERSION} == true ]] ; then
print_revision ${APPL_NAME}
RETURN=${UNKNOWN}
CONTINUE=false
fi
if [[ ${CONTINUE} == true
&& ( ${WARNING_THRES} == "" || ${CRITICAL_THRES} == ""
|| ! ${WARNING_THRES} =~ ^[0-9]+$ || ! ${CRITICAL_THRES} =~ ^[0-9]+$
|| ${WARNING_THRES} -le 0 || ${CRITICAL_THRES} -le 0
|| ${WARNING_THRES} -ge ${CRITICAL_THRES} ) ]] ; then
print_usage ${APPL_NAME}
echo "Warning threshold should be less than critical threshold."
echo "Threshold should be greater than 0."
RETURN=${UNKNOWN}
CONTINUE=false
fi
if [[ ${CONTINUE} == true ]] ; then
COMMAND="ps -ef | grep -e '^ *${USER} ' | wc -l"
if [[ ${VERBOSE} -ge 2 ]] ; then
echo "COMMAND: ${COMMAND}"
fi
PROCESSES=$(eval ${COMMAND})
if [[ ${TRACE} == true ]] ; then
echo "RESULT:'${PROCESSES}'" >> ${LOG}
fi
if [[ ${PROCESSES} -lt ${WARNING_THRES} ]] ; then
OUTPUT="The quantity of monitor scripts currently running is OK"
RETURN=${OK}
elif [[ ${PROCESSES} -lt ${CRITICAL_THRES} ]] ; then
OUTPUT="The quantity of monitor scripts currently running is getting big"
RETURN=${WARNING}
else
OUTPUT="The quantity of monitor scripts currently running is critical"
RETURN=${CRITICAL}
fi
# Performance data
PERFORMANCE="'Monitor scripts running'=$(echo ${PROCESSES});${WARNING_THRES};${CRITICAL_THRES}"
fi
# Prints the output.
if [[ ${OUTPUT} == "" ]] ; then
OUTPUT="Note: The test was not executed."
fi
# Builds the output.
if [[ ${CHECK_MK} == true ]] ; then
echo "${RETURN} scriptsRunning${TYPE} ${PERF_MK} ${OUTPUT}"
else
echo -e "${OUTPUT}|${PERFORMANCE}\n${LONG_OUTPUT}|${LONG_PERFORMANCE}"
fi
# Returns the error code.
if [[ ${VERBOSE} -ge 2 ]] ; then
echo "Return code: ${RETURN}"
fi
if [[ ${TRACE} == true ]] ; then
echo -e "OUTPUT:${OUTPUT}\nPERF:${PERFORMANCE}\nLONG_OUT:${LONG_OUTPUT}\nLONGPERF:${LONG_PERFORMANCE}\nRET_CODE:${RETURN}" >> ${LOG}
date >> ${LOG}
echo -e "<<<<<\n" >> ${LOG}
fi
if [[ ${LOCKED} == true && -r ${LOCK_FILE} ]] ; then
rm ${LOCK_FILE}
fi
echo "$(date +"%Y-%m-%d-%H.%M.%S") $$ Ended ${APPL_NAME} ${COPY_ARGS[@]}" >> /tmp/${APPL_NAME}.log
exit ${RETURN}