-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmonitoring.agent
More file actions
executable file
·377 lines (354 loc) · 10.7 KB
/
monitoring.agent
File metadata and controls
executable file
·377 lines (354 loc) · 10.7 KB
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
#!/bin/sh
#
# OpenWISP Monitoring Daemon
show_help() {
printf "Usage:\n"
printf " openwisp-monitoring [OPTIONS...]\n"
printf "\n"
printf "Runs OpenWISP Monitoring Agent for collecting and sending data.\n"
printf "\n"
printf "General options:\n"
printf " -h, --help\t\t\t\t: Show this help text\n"
printf " -v, --version\t\t\t\t: Shows version of the agent.\n"
printf " --mode <send, collect>\t\t: Mode for running Monitoring Agent.\n"
printf "OpenWISP Config options:\n"
printf " --url <server-url>\t\t\t: URL of the OpenWISP server.\n"
printf " --uuid <uuid>\t\t\t\t: UUID of the device.\n"
printf " --key <key>\t\t\t\t: Key for the device.\n"
printf " --verify_ssl <0, 1>\t\t\t: Whether SSL Authentication should be enabled or not.\n"
printf " --cacert <file>\t\t\t: Value passed to curl --cacert argument.\n"
printf " --capath <directory>\t\t\t: Value passed to curl --capath argument.\n"
printf "OpenWISP Monitoring Config options:\n"
printf " --interval <time>\t\t\t: Time in seconds after which data should be sent/collected.\n"
printf " --monitored_interfaces <interfaces>\t: Interfaces that needs to be monitored.\n"
printf " --verbose_mode <0, 1>\t\t\t: Run agent in verbose mode.\n"
printf " --required_memory <0-1>\t\t: Fraction of total memory that should be available to collect data.\n"
printf " --max_retries <max-retries-count>\t: No. of time agent should retry to send data.\n"
exit 0
}
show_version() {
VERSION=$(cat /usr/lib/openwisp-monitoring/VERSION)
echo "$(basename "$0") $VERSION"
exit 0
}
echoerr() { echo "$@" 1>&2 && exit 1; }
check_available_memory() {
while true; do
total=$(ubus call system info | jsonfilter -e '@.memory.total')
available=$(ubus call system info | jsonfilter -e '@.memory.available')
required=$(echo - | awk -v percent="$REQUIRED_PERCENT" -v total="$total" '{printf("%.f",percent*total)}')
if [ "$available" -ge "$required" ]; then
return 0
else
# enough memory not available, deleting old data
# shellcheck disable=SC2012
file="$TMP_DIR/$(ls -1t "$TMP_DIR" | tail -1)"
# ensure that memory was available previously and file was written
if [ -f "$file" ]; then
rm "$file"
else
[ "$VERBOSE_MODE" -eq "1" ] \
&& logger -s "Not enough memory available, skipping collect data." \
-p daemon.warn
return 1
fi
fi
done
}
collect_data() {
n=0
[ "$VERBOSE_MODE" -eq "1" ] && logger -s "Collecting NetJSON Monitoring data." \
-p daemon.info
until [ "$n" -ge 5 ]; do
/usr/sbin/netjson-monitoring --dump "$MONITORED_INTERFACES" && break
if [ "$n" -eq 5 ]; then
[ "$VERBOSE_MODE" -eq "1" ] && logger -s "Collecting data failed!" -p daemon.err
fi
n=$((n + 1))
sleep 5
done
}
set_url_and_curl() {
[ -z "$BASE_URL" ] && echoerr "missing required --url option"
[ -z "$UUID" ] && echoerr "missing required --uuid option"
[ -z "$KEY" ] && echoerr "missing required --key option"
URL="$BASE_URL/api/v1/monitoring/device/$UUID/?key=$KEY"
# shellcheck disable=SC1083
CURL_COMMAND="curl -s -w "%{http_code}" --output $RESPONSE_FILE"
[ "$VERIFY_SSL" -eq "0" ] && CURL_COMMAND="$CURL_COMMAND -k"
[ -n "$CACERT" ] && CURL_COMMAND="$CURL_COMMAND --cacert $CACERT"
[ -n "$CAPATH" ] && CURL_COMMAND="$CURL_COMMAND --capath $CAPATH"
[ "$VERBOSE_MODE" -eq "1" ] && CURL_COMMAND="$CURL_COMMAND -v"
MAX_RETRIES=${MAX_RETRIES:-5}
FAILING=0
return 0
}
save_data() {
while true; do
if check_available_memory; then
data="$(collect_data)"
filename="$(date -u +'%d-%m-%Y_%H:%M:%S')"
# save data with file_name
echo "$data" >"$TMP_DIR/$filename"
# compress data
gzip "$TMP_DIR/$filename"
[ "$VERBOSE_MODE" -eq "1" ] && logger -s "Data saved temporarily." \
-p daemon.info
fi
# get process id of the process sending data
pid=$(pgrep -f "openwisp-monitoring.*--mode send")
kill -SIGUSR1 "$pid"
sleep "$INTERVAL"
done
}
handle_sigusr1() {
[ "$VERBOSE_MODE" -eq "1" ] && logger -s "SIGUSR1 received! Sending data." \
-p daemon.info
return 0
}
send_data() {
success=0
while true; do
for file in "$TMP_DIR"/*; do
if [ ! -f "$file" ]; then
[ "$VERBOSE_MODE" -eq "1" ] && logger -s "No data file found to send." \
-p daemon.info
trap handle_sigusr1 USR1
# SIGUSR1 signal received, interrupt sleep and continue sending data
sleep "$INTERVAL" &
wait $!
continue
fi
trap "" USR1
basefilename=${file##*/}
filename=${basefilename%.*}
# remove previous saved response if exist
[ "$filename" = "response" ] && rm "$file" 2>/dev/null && continue
# extra zeroes are added for nanoseconds precision
url="$URL&time=$filename.000000"
# retry sending data in case of failure
failures=0
# check if the data is latest or old one
[ "$(echo "$TMP_DIR"/* | awk '{print $2}')" ] || url="$url¤t=true"
if [ "${basefilename##*.}" = "gz" ]; then
# decompress file
gzip -d "$file"
fi
filename="$TMP_DIR/$filename"
# check if the data file exist
if ! [ -f "$filename" ]; then
[ "$VERBOSE_MODE" -eq "1" ] && logger -s "data file $filename not found." \
-p daemon.info
continue
fi
while true; do
if [ "$failures" -eq "$MAX_RETRIES" ]; then
[ -f "$RESPONSE_FILE" ] && error_message="\"$(cat "$RESPONSE_FILE")\"" || error_message='"".'
if [ "$VERBOSE_MODE" -eq "1" ]; then
logger -s "Data not sent successfully. Response code is \"$response_code\"." \
"Error message is $error_message" \
-p daemon.err
elif [ "$FAILING" -eq "0" ]; then
FAILING=1
logger -s "Data not sent successfully. Response code is \"$response_code\"." \
"Error message is $error_message" \
"Run with verbose mode to find more." \
-t openwisp-monitoring \
-p daemon.err
fi
break
fi
# send data
if [ "$VERBOSE_MODE" -eq "1" ]; then
printf "data="
cat "$filename"
set -x
fi
response_code=$($CURL_COMMAND -H "Content-Type: application/json" -d "@$filename" "$url")
set +x
if [ "$response_code" = "200" ]; then
success=$((success + 1))
if [ "$VERBOSE_MODE" -eq "1" ]; then
logger -s "Data sent successfully." \
-p daemon.info
elif [ "$FAILING" -eq "1" ]; then
logger -s "Data sent successfully." \
-t openwisp-monitoring \
-p daemon.info
FAILING=0
rm -f "$RESPONSE_FILE"
fi
# remove saved data
rm -f "$filename"
break
elif [ "$response_code" = "400" ]; then
logger -s "Data not sent successfully (HTTP status $response_code), discarding data." \
-t openwisp-monitoring \
-p daemon.err
rm -f "$filename"
break
else
timeout=$(/usr/sbin/openwisp-get-random-number 2 15)
[ "$VERBOSE_MODE" -eq "1" ] && logger -s "Data not sent successfully. Retrying in $timeout seconds." \
-p daemon.warn
failures=$((failures + 1))
if [ "$response_code" = "404" ]; then
# If we get a HTTP 404 response, it could mean that the device has been deleted from OpenWISP
# Controller. We check if openwisp-config agent is running to determine if the device has been
# deleted. If openwisp-config agent is not running, the monitoring agent will also exit.
if ! pgrep -x "openwisp-config" >/dev/null; then
logger -s "Giving up and shutting down: the device may have been deleted from OpenWISP Controller" \
-t openwisp-monitoring \
-p daemon.err
# get process id of the process collecting data
pid=$(pgrep -f "openwisp-monitoring.*--mode collect")
kill -SIGKILL "$pid"
exit 2
fi
fi
sleep "$timeout"
fi
done
# retry sending same data again in next cycle
[ "$failures" -eq "$MAX_RETRIES" ] && break
# pause for a random time between 1 and 5 seconds every
# 10 successful requests sent to avoid overload the server
if [ $((success % 10)) -eq 0 ]; then
pause_duration=$(/usr/sbin/openwisp-get-random-number 1 5)
sleep "$pause_duration"
fi
done
done
}
wait_until_registered() {
if [ -n "$UUID" ] && [ -n "$KEY" ]; then
return 0
fi
logger -s "Waiting for device to register." \
-t openwisp-monitoring \
-p daemon.info
UUID=$(uci get openwisp.http.uuid 2>/dev/null)
KEY=$(uci get openwisp.http.key 2>/dev/null)
if [ -z "$UUID" ] || [ -z "$KEY" ]; then
return 1
fi
logger -s "Setting uuid and key." \
-t openwisp-monitoring \
-p daemon.info
export UUID KEY
}
bootup_delay() {
if [ ! -f "$BOOTUP" ]; then
# actions to do only after agent start, not after restart
if [ "$BOOTUP_DELAY" -ne "0" ]; then
# get a random number between zero and $BOOTUP_DELAY
DELAY=$(/usr/sbin/openwisp-get-random-number 0 "$BOOTUP_DELAY")
logger "Delaying initialization of the monitoring agent for $DELAY seconds." \
-t openwisp-monitoring \
-p daemon.info
sleep "$DELAY"
fi
# send bootup hotplug event
touch "$BOOTUP"
fi
}
main() {
# parse options
while [ -n "$1" ]; do
case "$1" in
--version | -v)
show_version
;;
--help | -h)
show_help
;;
--url)
export BASE_URL="$2"
shift
;;
--uuid)
export UUID="$2"
shift
;;
--key)
export KEY="$2"
shift
;;
--verify_ssl)
export VERIFY_SSL="$2"
shift
;;
--capath)
export CAPATH="$2"
shift
;;
--cacert)
export CACERT="$2"
shift
;;
--interval)
export INTERVAL="$2"
shift
;;
--monitored_interfaces)
export MONITORED_INTERFACES="$2"
shift
;;
--verbose_mode)
export VERBOSE_MODE="$2"
shift
;;
--required_memory)
export REQUIRED_PERCENT="$2"
shift
;;
--mode)
export MODE="$2"
shift
;;
--max_retries)
export MAX_RETRY="$2"
shift
;;
--bootup_delay)
export BOOTUP_DELAY="$2"
shift
;;
-*)
echo "Invalid option: $1"
exit 1
;;
*) break ;;
esac
shift
done
INTERVAL=${INTERVAL:-300}
REGISTRATION_INTERVAL=$((INTERVAL / 10))
VERBOSE_MODE=${VERBOSE_MODE:-0}
BOOTUP_DELAY=${BOOTUP_DELAY:-10}
TMP_DIR="/tmp/openwisp/monitoring"
# The agent tries to upload all files in /tmp/openwisp/monitoring
# to the controller, hence /tmp/openwisp/monitoring-bootup
# is used to prevent agent from uploading this file.
BOOTUP="$TMP_DIR-bootup"
[ -z "$MODE" ] && echoerr "missing required --mode option"
# make directory
mkdir -p "$TMP_DIR"
if [ "$MODE" = "collect" ]; then
bootup_delay
MONITORED_INTERFACES=${MONITORED_INTERFACES:-*}
# remove double quotes from interfaces
MONITORED_INTERFACES=$(echo "$MONITORED_INTERFACES" | tr -d '"')
save_data
elif [ "$MODE" = "send" ]; then
until wait_until_registered; do
sleep "$REGISTRATION_INTERVAL"
done
VERIFY_SSL=${VERIFY_SSL:-0}
RESPONSE_FILE="$TMP_DIR"/response.txt
set_url_and_curl && send_data
else
echoerr "The supplied mode is invalid. Only send and collect are allowed"
fi
}
main "$@"