2013-08-27 09:05:12 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# -*- bash -*-
|
|
|
|
|
|
|
|
: << =cut
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
haproxy_response_compressor_backend -Haproxy Response Compressed
|
|
|
|
|
|
|
|
=head1 CONFIGURATION
|
|
|
|
|
|
|
|
[haproxy*]
|
|
|
|
user root
|
|
|
|
env.backend backend_name_1 backend_name_2 backend_name_3
|
|
|
|
env.frontend frontend_name_1 frontend_name_2 frontend_name_3
|
|
|
|
# You can use url o socket option, use one of them, not both!
|
|
|
|
env.url http://user:passwd@IP:port/admin?stats;csv
|
|
|
|
# or
|
|
|
|
env.socket /var/lib/haproxy/stats.socket
|
|
|
|
|
|
|
|
=head1 AUTHOR
|
|
|
|
|
|
|
|
Ricardo Fraile <rfrail3@yahoo.es>
|
|
|
|
|
|
|
|
=head1 LICENSE
|
|
|
|
|
|
|
|
GPLv2
|
|
|
|
|
|
|
|
=head1 MAGICK MARKERS
|
|
|
|
|
|
|
|
#%# family=auto
|
|
|
|
#%# capabilities=autoconf
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
. $MUNIN_LIBDIR/plugins/plugin.sh
|
|
|
|
|
|
|
|
function parse_url {
|
|
|
|
# Modify ifs variable
|
|
|
|
OIFS=$IFS;
|
|
|
|
IFS=",";
|
|
|
|
PXNAME="$1"
|
|
|
|
SVNAME="$2"
|
|
|
|
VALUE="$3"
|
|
|
|
|
|
|
|
if [ ! -z "$url" ]; then
|
|
|
|
LINE1=`curl -s "$url" | head -1 | sed 's/# //'`
|
|
|
|
LINE2=`curl -s "$url" | grep "$PXNAME,$SVNAME"`
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -z "$socket" ]; then
|
|
|
|
LINE1=`echo 'show stat' | socat unix-connect:"$socket" stdio | head -1 | sed 's/# //'`
|
2018-08-02 02:03:42 +02:00
|
|
|
LINE2=`echo 'show stat' | socat unix-connect:"$socket" stdio | grep "$PXNAME,$SVNAME"`
|
2013-08-27 09:05:12 +02:00
|
|
|
fi
|
2018-08-02 02:03:42 +02:00
|
|
|
|
2013-08-27 09:05:12 +02:00
|
|
|
ARRAY1=($LINE1);
|
|
|
|
|
|
|
|
# Find values
|
|
|
|
for ((i=0; i<${#ARRAY1[@]}; ++i));
|
|
|
|
do
|
|
|
|
# Get data
|
|
|
|
if [[ "${ARRAY1[$i]}" == "${VALUE}" ]]; then
|
|
|
|
o=$i;
|
|
|
|
o=`expr $o + 1`
|
|
|
|
echo ${LINE2} | cut -d" " -f $o
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Reset ifs
|
|
|
|
IFS=$OIFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SVNAME='FRONTEND'
|
|
|
|
LIST="$frontend"
|
|
|
|
|
|
|
|
|
|
|
|
if [ "$1" = "autoconf" ]; then
|
2018-08-02 02:03:42 +02:00
|
|
|
echo yes
|
2013-08-27 09:05:12 +02:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$1" = "config" ]; then
|
|
|
|
|
|
|
|
echo "graph_title Responses compressed ${SVNAME}"
|
|
|
|
echo 'graph_args --base 1000 -l 0 '
|
2013-08-27 09:08:21 +02:00
|
|
|
echo 'graph_vlabel Responses'
|
2013-08-27 09:05:12 +02:00
|
|
|
echo 'graph_scale no'
|
2017-02-22 03:29:26 +01:00
|
|
|
echo 'graph_category loadbalancer'
|
2013-08-27 09:05:12 +02:00
|
|
|
echo "graph_info HTTP responses that were compressed ${SVNAME}"
|
|
|
|
|
|
|
|
|
|
|
|
for i in ${LIST}; do
|
|
|
|
echo "comp_rsp`echo $i | md5sum | cut -d - -f1 | sed 's/ //g'`.label Responses compressed$i"
|
|
|
|
echo "comp_rsp`echo $i | md5sum | cut -d - -f1 | sed 's/ //g'`.type DERIVE"
|
|
|
|
echo "comp_rsp`echo $i | md5sum | cut -d - -f1 | sed 's/ //g'`.min 0"
|
|
|
|
echo "comp_rsp`echo $i | md5sum | cut -d - -f1 | sed 's/ //g'`.info HTTP responses that were compressed $i"
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
for i in ${LIST}; do
|
|
|
|
RSP=`parse_url ${i} ${SVNAME} comp_rsp`
|
|
|
|
|
|
|
|
echo "comp_rsp`echo $i | md5sum | cut -d - -f1 | sed 's/ //g'`.value $RSP"
|
|
|
|
done
|
2018-08-02 02:03:42 +02:00
|
|
|
|
2013-08-27 09:05:12 +02:00
|
|
|
|