-
Notifications
You must be signed in to change notification settings - Fork 8
/
check_last_backup
executable file
·587 lines (545 loc) · 18.1 KB
/
check_last_backup
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
#! /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 scripts checks the elderly of the last backup. It throws alerts if the
# last backups are too old.
#
# In order to be used in Nagios, you have to configure the following.
#
# # 'check_last_backup' command definition
# define command {
# command_name check_last_backup
# command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -l nagios -C "scripts/check_last_backup -i '$ARG1$' -d '$ARG2$' -w '$ARG3$' -c '$ARG4$'"
# }
# define service{
# host_name db2server
# service_description Last backup
# check_command check_last_backup!/home/db2inst1!sample!240:140:50!168:96:25
# use generic-service
# }
#
# When using NRPE:
#
# In the database server:
#
# command[check_last_backup]=/home/nagios/scripts/check_last_backup -i /home/db2inst1 -d sample -c 240:140:50 -w 168:96:25
#
# Then modify the path according to your script location, instance home dir,
# database and thresholds.
#
# In the Nagios server:
#
# define service{
# host_name db2server
# service_description Last backup
# check_command check_nrpe_1arg!check_last_backup
# use generic-service
# }
#
# Parameters:
# -c | --critical : Time in hours to consider the last backup age as critical.
# This checks the full, incremental and delta backups.
# Notation for these three type are times separated by colons
# FF:II:DD = Full : Incremental : Delta.
# Full is obligatory, other two are optionals.
# -d | --database : Database name.
# -h | --help : Show the help of this script.
# -i | --instance : Home directory of the instance. Usually it is
# /home/db2inst1.
# -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 : Time in hours to consider the last backup age as critical.
# This checks the full, incremental and delta backups.
#
# Notation for these three type are times separated by colons
# FF:II:DD = Full : Incremental : Delta.
# Full is obligatory, other two are optionals.
#
# 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.2 2015-10-15
}
# Function to show the help
function print_usage {
/bin/cat <<__EOT
Usage: ${1} { -i instanceHomeDirectory -d databaseName [-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 elderly of the last backup of the database.
-c | --critical INTEGER:INTEGER:INTEGER
Time in hours of the last backup to considered as critical.
Default 2.
-d | --database STRING
Database name.
-h | --help
Shows the current documentation.
-i | --instance STRING
Instance home directory. It is usually /home/db2inst1.
-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:INTEGER:INTEGER
Time in hours of the last backup to considered as warning.
Default 1.
__EOT
}
function query {
PARAM=${1}
RET=1
if [[ ${VERBOSE} -ge 2 ]] ; then
echo "Params: '${PARAM}'"
fi
COMMAND_LIST="db2 -x
with hist(start_time, operationtype) as (
select start_time, operationtype
from sysibmadm.db_history
where operation = 'B' )
select timestampdiff(8, current timestamp - char(timestamp(max(start_time))))
from hist
where operationtype in (${PARAM})
order by 1"
if [[ ${VERBOSE} -ge 2 ]] ; then
echo "COMMAND: ${COMMAND_LIST}"
fi
LIST=$(db2 connect to ${DATABASE_NAME} > /dev/null ; ${COMMAND_LIST} ; db2 connect reset > /dev/null)
if [[ ${VERBOSE} -ge 3 ]] ; then
echo "RESULT:'${LIST}'"
fi
if [[ ${TRACE} == true ]] ; then
echo "RESULT:'${LIST}'" >> ${LOG}
fi
# Check for errors
CONN_ERROR=$(echo ${LIST} | grep SQL1024)
HIST_ERROR=$(echo ${LIST} | grep SQL2155)
HADR_ERROR=$(echo ${LIST} | grep SQL1773)
HADR_REPLAY=$(echo ${LIST} | grep SQL1224)
if [[ ${CONN_ERROR} != "" ]] ; then
OUTPUT="Connection problem"
RETURN=${UNKNOWN}
CONTINUE=false
elif [[ ${HIST_ERROR} != "" ]] ; then
OUTPUT="History file modified"
RETURN=${UNKNOWN}
CONTINUE=false
elif [[ ${HADR_ERROR} != "" ]] ; then
OUTPUT="Trying to update calculation in Standby database"
RETURN=${UNKNOWN}
CONTINUE=false
elif [[ ${HADR_REPLAY} != "" ]] ; then
OUTPUT="HADR replaying"
RETURN=${UNKNOWN}
CONTINUE=false
elif [[ ${LIST} == "" ]] ; then
OUTPUT="Empty output, check the command"
RETURN=${UNKNOWN}
CONTINUE=false
else
RET=0
fi
return ${RET}
}
# 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
if [[ ${#} -eq 0 ]] ; then
print_usage ${APPL_NAME}
RETURN=${UNKNOWN}
CONTINUE=false
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:d:hi:KTvVw: --long critical:,database:,help,instance:,mk,trace,verbose,version,warning: \
-n ${APPL_NAME} -- "${@}")
elif [[ "${OS:0:3}" == "AIX" ]] ; then
set -- $(getopt c:d:hi:KTvVw: ${*})
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
INSTANCE_HOME=
DATABASE_NAME=
WARNING_THRES=
CRITICAL_THRES=
if [[ "${OS:0:5}" == "Linux" ]] ; then
while true; do
case "${1}" in
-c | --critical ) CRITICAL_THRES=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
-d | --database ) DATABASE_NAME=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
-h | --help ) HELP=true ; shift ;;
-i | --instance ) INSTANCE_HOME=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
-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 ;;
-d) DATABASE_NAME=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
-h) HELP=true ; shift ;;
-i) INSTANCE_HOME=$(echo ${2} | cut -d' ' -f1) ; shift 2 ;;
-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 "Instance at ${INSTANCE_HOME}" >> ${LOG}
echo "PID ${$}" >> ${LOG}
fi
ECHO="help:${HELP}, version:${VERSION}, verbose:${VERBOSE}"
ECHO="${ECHO}, directory:${INSTANCE_HOME}, database:${DATABASE_NAME}"
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 && ${INSTANCE_HOME} == "" ]] ; then
print_usage ${APPL_NAME}
RETURN=${UNKNOWN}
CONTINUE=false
fi
if [[ ${CONTINUE} == true && ${DATABASE_NAME} == "" ]] ; then
print_usage ${APPL_NAME}
RETURN=${UNKNOWN}
CONTINUE=false
fi
if [[ ${CONTINUE} == true ]] ; then
CRIT_FULL=$(echo ${CRITICAL_THRES} | awk -F: '{print $1}')
CRIT_INCR=$(echo ${CRITICAL_THRES} | awk -F: '{print $2}')
CRIT_DELT=$(echo ${CRITICAL_THRES} | awk -F: '{print $3}')
WARN_FULL=$(echo ${WARNING_THRES} | awk -F: '{print $1}')
WARN_INCR=$(echo ${WARNING_THRES} | awk -F: '{print $2}')
WARN_DELT=$(echo ${WARNING_THRES} | awk -F: '{print $3}')
if [[ ${WARNING_THRES} == "" || ${CRITICAL_THRES} == ""
|| ${WARN_FULL} == "" || ${CRIT_FULL} == ""
|| ${WARN_FULL} -le 0 || ${CRIT_FULL} -le 0
|| ${WARN_FULL} -ge ${CRIT_FULL}
|| ( ${WARN_INCR} != "" && ${CRIT_INCR} == "" )
|| ( ${WARN_INCR} == "" && ${CRIT_INCR} != "" )
|| ( ${WARN_INCR} != "" && ${CRIT_INCR} != ""
&& ( ${WARN_INCR} -le 0 || ${CRIT_INCR} -le 0
|| ${WARN_INCR} -ge ${CRIT_INCR} ))
|| ( ${WARN_DELT} != "" && ${CRIT_DELT} == "" )
|| ( ${WARN_DELT} == "" && ${CRIT_DELT} != "" )
|| ( ${WARN_DELT} != "" && ${CRIT_DELT} != ""
&& ( ${WARN_DELT} -le 0 || ${CRIT_DELT} -le 0
|| ${WARN_DELT} -ge ${CRIT_DELT} )) ]] ; 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
fi
if [[ ${CONTINUE} == true ]] ; then
if [[ -d ${INSTANCE_HOME} && -e ${INSTANCE_HOME}/sqllib/db2profile ]] ; then
# Load the DB2 profile.
. ${INSTANCE_HOME}/sqllib/db2profile
INSTANCE_NAME=$(db2 get instance | awk '/instance/ {print $7}')
else
OUTPUT="Instance directory is invalid."
RETURN=${UNKNOWN}
CONTINUE=false
fi
fi
if [[ ${CONTINUE} == true ]] ; then
COMMAND_DATABASE="db2 list db directory"
if [[ ${VERBOSE} -ge 2 ]] ; then
echo "COMMAND: ${COMMAND_DATABASE}"
fi
DATABASE=$(${COMMAND_DATABASE})
if [[ ${TRACE} == true ]] ; then
echo "RESULT:'${DATABASE}'" >> ${LOG}
fi
DATABASE=$(printf '%s\n' "${DATABASE}" | awk '/Database alias/ {print $4}' | grep -iw ${DATABASE_NAME})
if [[ ${VERBOSE} -ge 3 ]] ; then
echo "RESULT:'${DATABASE}'"
fi
if [[ ${DATABASE} == "" ]] ; then
OUTPUT="The database ${DATABASE_NAME} is not catalogued."
RETURN=${UNKNOWN}
CONTINUE=false
fi
fi
if [[ ${CONTINUE} == true ]] ; then
# Checks HADR role.
HADR_ROLE=$(db2 get db cfg for wfscpd | awk '/HADR database role/ {print $5}')
if [[ ${VERBOSE} -ge 3 ]] ; then
echo "RESULT HADR: '${HADR_ROLE}'"
fi
# There could be just one query, but 'union all' is no allowed in HADR, thus
# three calls.
# There is a problem when accessing the db_view, and the script hangs in any
# of the three calls.
if [[ ! -z ${CRIT_DELT} ]] ; then
query "'D', 'E', 'I', 'O', 'F', 'N'"
RET1=${?}
DELTA=${LIST}
if [[ ${RET1} -eq 0 ]] ; then
DIFF_DELT=$(echo ${DELTA} | awk '{print $1}')
if [[ ${HADR_ROLE} != "STANDBY" ]] ; then
if [[ ${DIFF_DELT} -ge ${CRIT_DELT} ]] ; then
OUTPUT="Delta backup is too old."
RETURN=${CRITICAL}
elif [[ ${DIFF_DELT} -ge ${WARN_DELT} ]] ; then
OUTPUT="Delta backup is getting old."
if [[ ${RETURN} -ne ${CRITICAL} ]] ; then
RETURN=${WARNING}
fi
else
OUTPUT="OK Delta."
fi
fi
fi
fi
fi
if [[ ${CONTINUE} == true ]] ; then
if [[ ! -z ${CRIT_INCR} ]] ; then
query "'I', 'O', 'F', 'N'"
RET2=${?}
INCREMENTAL=${LIST}
if [[ ${RET2} -eq 0 ]] ; then
DIFF_INCR=$(echo ${INCREMENTAL} | awk '{print $1}')
if [[ ${HADR_ROLE} != "STANDBY" ]] ; then
if [[ ${DIFF_INCR} -ge ${CRIT_INCR} ]] ; then
OUTPUT="Incremental backup is too old. ${OUTPUT}"
RETURN=${CRITICAL}
elif [[ ${DIFF_INCR} -ge ${WARN_INCR} ]] ; then
OUTPUT="Incremental backup is getting old. ${OUTPUT}"
if [[ ${RETURN} -ne ${CRITICAL} ]] ; then
RETURN=${WARNING}
fi
else
OUTPUT="OK Incremental. ${OUTPUT}"
fi
fi
fi
fi
fi
if [[ ${CONTINUE} == true ]] ; then
query "'F', 'N'"
RET3=${?}
FULL=${LIST}
if [[ ${RET3} -eq 0 ]] ; then
DIFF_FULL=$(echo ${FULL} | awk '{print $1}')
if [[ ${HADR_ROLE} != "STANDBY" ]] ; then
if [[ ${DIFF_FULL} -ge ${CRIT_FULL} ]] ; then
OUTPUT="Full backup is too old. ${OUTPUT}"
RETURN=${CRITICAL}
elif [[ ${DIFF_FULL} -ge ${WARN_FULL} ]] ; then
OUTPUT="Full backup is getting old. ${OUTPUT}"
RETURN=${WARNING}
else
OUTPUT="OK Full. ${OUTPUT}"
RETURN=${OK}
fi
else
OUTPUT="OK. Standby database, check values in primary."
RETURN=${OK}
fi
# Performance data
PERFORMANCE="'Full_backup'=${DIFF_FULL};${WARN_FULL};${CRIT_FULL}"
if [[ ! -z ${CRIT_DELT} ]] ; then
DELTA_PERF="'Delta_backup'=${DIFF_DELT};${WARN_DELT};${CRIT_DELT}"
fi
if [[ ! -z ${CRIT_INCR} ]] ; then
INCR_PERF="'Incremental_backup'=${DIFF_INCR};${WARN_INCR};${CRIT_INCR}"
fi
LONG_PERFORMANCE="${DELTA_PERF}\n${INCR_PERF}"
PERF_MK="${INCR_PERF}|${DELTA_PERF}|${INCR_PERF}"
else
OUTPUT="There are problems retrieving the data."
RETURN=${UNKNOWN}
fi
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} lastBackup-${INSTANCE_NAME}-${DATABASE_NAME} ${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}