1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-24 18:07:20 +00:00

- have some dirs

This commit is contained in:
Steve Schnepp 2012-02-13 18:24:46 +01:00
parent 0b089ea777
commit 08346aac58
687 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,47 @@
#!/bin/sh
# Pasha "p01nt" Klets <pasha@klets.name>
name=`basename $0`
title=`echo ${name} | awk -F_ '{print $NF}'`
hp_stat() {
echo "show stat" | socat unix-connect:/tmp/haproxy stdio
}
labels() {
cat <<EOF
frontend.label Frontend
frontend.type GAUGE
frontend.draw AREASTACK
backend.label Backend
backend.type GAUGE
backend.draw AREASTACK
EOF
}
values() {
cat <<EOF
frontend.value `hp_stat | grep '^'${title}',FRONTEND' | awk -F, '{print $5}'`
backend.value `hp_stat | grep '^'${title}',BACKEND' | awk -F, '{print $5}'`
EOF
}
graph_title="${title} sessions"
graph_vlabel=${title}
case $1 in
config)
cat <<EOF
graph_category haproxy
graph_title ${graph_title}
graph_vlabel ${graph_vlabel}
`labels`
EOF
exit 0
;;
esac
values
exit 0