blob: 54b244910804288f3409741218cb2e98c97f3de5 [file] [log] [blame] [raw]
#!/bin/sh
PROGRAM_DIR="`dirname \"$0\"`"
. "$PROGRAM_DIR/utils.sh"
load_config_file "$PROGRAM_DIR/performance-monitor.cfg"
load_config_file /etc/performance-monitor.cfg
interval=5
while getopts i:I:n: c
do case "$c" in
i)
interval="$OPTARG"
;;
I)
HOSTNAME="`get_ip_address \"$OPTARG\"`"
if [ -z "$HOSTNAME" ]; then
printf "Cannot get IP address from interface '%s'\\n" "$OPTARG" 1>&2
exit 1
fi
;;
n)
HOSTNAME="$1"
;;
\?)
printf "Usage: %s [-i <interval>] [-I <interface>] [-n <hostname>]\\n" "$0" 1>&2
exit 255
;;
esac done
[ -z "$HOSTNAME" ] && HOSTNAME="`hostname`"
export LC_TIME=C
sar -w "$interval" | sed -ur -e "/^[0-9]{2}:[0-9]{2}:[0-9]{2}/!d" -e "s/[0-9]{2}:[0-9]{2}:[0-9]{2}.{4}//" | while read -r line; do
set -- $line
if [ $# != 2 ]; then
echo "data error: # $# != 2" 1>&2
continue
fi
[ "$1" = proc/s ] && continue
http_post "http://172.20.0.74:8086/write?db=mydb" \
"procstat,host=$HOSTNAME forks=$1,contextswitches=$2"
done