-
Notifications
You must be signed in to change notification settings - Fork 31
/
http_connections.sh
executable file
·48 lines (43 loc) · 1.47 KB
/
http_connections.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
#!/bin/bash
# Cloudkick plugin to count number of http connections.
# Alerts if no clients and/or no listeners.
# ----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE" (Revision 42):
# <[email protected]> wrote this file. As long as you retain this notice you
# can do whatever you want with this stuff. If we meet some day, and you think
# this stuff is worth it, you can buy me a beer in return
# ----------------------------------------------------------------------------
if [ "$1" = "help" ]; then
echo "CloudKick check to return established, connected, and idle users, and ensure there is a listener (critical if there is not)
usage: $0 <threshold|help>
where
help prints this message
threshold is the number of minimum users. Below this number is a critical alert.
if no argument, threshold is 1."
exit
else
if [ "$1" ]; then
THRESHOLD=$1
else
THRESHOLD=1
fi
fi
NOW=`netstat -ano |grep :80`;
SIMULTANEOUS=`echo "$NOW" |grep -c :80`
ACTIVE=`echo "$NOW" |grep -c ESTABLISHED`
IDLE=`echo "$NOW" |grep -c TIME_WAIT`
#remove the listener
SIMULTANEOUS=$(($SIMULTANEOUS - 1))
if [ $SIMULTANEOUS -lt $THRESHOLD ]; then
if [ $SIMULTANEOUS -lt 0 ]; then
echo "status err no server listening!"
exit
else
echo "status err less than $THRESHOLD users connected!";
fi
else
echo "status ok ok";
fi
echo "metric http_users int $SIMULTANEOUS";
echo "metric http_users_active int $ACTIVE";
echo "metric http_users_idle int $IDLE";