blob: 5e7398cdca9e8b4178e5dc8c292b0dda98b3b583 (
plain) (
blame)
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
|
#!/bin/sh
SLEEP=10
PRINT_FLAG=false
MYSQL_HOST="localhost"
COMPARE_TYPE="eq"
usage() {
printf "$0 [options] <query> <target>\n"
printf "\t-H <host>\tMysql host\n"
printf "\t-u <user>\tMysql user\n"
printf "\t-d <database>\tMysql database\n"
printf "\t-c <compare_typw>\teq, lt or gt, defaults to eq\n"
printf "\t-p\t\tPrint the current value for each check\n"
}
while getopts "H:u:d:c:p" opt; do
case ${opt} in
H )
MYSQL_HOST="$OPTARG"
;;
u )
MYSQL_USER="$OPTARG"
;;
d )
MYSQL_DATABASE="$OPTARG"
;;
c )
COMPARE_TYPE="$OPTARG"
;;
p )
PRINT_FLAG=true
;;
\? )
echo "Invalid option: $OPTARG" 1>&2
exit 1
;;
: )
echo "Option -$OPTARG requires an argument." 1>&2
exit 1
;;
esac
done
shift $((OPTIND -1))
if [ -z "$1" ]; then
echo "Error: <query> argument is missing." >&2
usage
exit 1
fi
QUERY="$1"
if [ -z "$2" ]; then
echo "Error: <target> argument is missing." >&2
usage
exit 1
fi
TARGET="$2"
if [ -z "$MYSQL_HOST" ]; then
echo "Error: -H <host> argument is missing." >&2
usage
exit 1
fi
if [ -z "$MYSQL_USER" ]; then
echo "Error: -u <user> argument is missing." >&2
usage
exit 1
fi
if [ -z "$MYSQL_DATABASE" ]; then
echo "Error: -d <database> argument is missing." >&2
usage
exit 1
fi
read -s -p "Enter password: " MYSQL_PWD
echo
export MYSQL_PWD
while true; do
RESULT=$(mysql -u"$MYSQL_USER" -h"$MYSQL_HOST" "$MYSQL_DATABASE" -e "$QUERY" --batch --silent)
if [ ! "$?" = "0" ]; then
>&2 echo "[$(date)]: MySQL Error!"
sleep $SLEEP
continue
fi
if [ "$PRINT_FLAG" = true ]; then
echo "[$(date)]: ${RESULT}"
fi
if [ "$COMPARE_TYPE" = "eq" ]; then
if [ "$RESULT" = "$TARGET" ]; then
if [ "$PRINT_FLAG" = true ]; then
echo "[$(date)]: Target reached $RESULT = $TARGET"
fi
break
fi
elif [ "$COMPARE_TYPE" = "lt" ]; then
if (( RESULT < TARGET )); then
if [ "$PRINT_FLAG" = true ]; then
echo "[$(date)]: Target reached $RESULT < $TARGET"
fi
break
fi
elif [ "$COMPARE_TYPE" = "gt" ]; then
if (( RESULT > TARGET )); then
if [ "$PRINT_FLAG" = true ]; then
echo "[$(date)]: Target reached $RESULT > $TARGET"
fi
break
fi
fi
sleep $SLEEP
done
unset MYSQL_PWD
|