Enable internal logic for streamcounting
This commit is contained in:
parent
ecad87d725
commit
7f57130a0c
|
@ -1,2 +1,4 @@
|
|||
# config file for count-streams.sh
|
||||
STREAMERS=http://stream.openfest.org/stats
|
||||
WARNLEVEL=3
|
||||
CRITLEVEL=6
|
|
@ -8,17 +8,17 @@ if [ -e $MK_CONFDIR/count-streams.cfg ] ; then
|
|||
. $MK_CONFDIR/count-streams.cfg
|
||||
fi
|
||||
|
||||
echo "<<<mrpe>>>"
|
||||
if [ ! -r $MK_CONFDIR/count-streams.xsl ] ; then
|
||||
_res=3
|
||||
_data="UNKNOWN: Stylesheet not found"
|
||||
fi
|
||||
|
||||
echo "<<<stream_count>>>"
|
||||
for STREAMER in ${STREAMERS} ; do
|
||||
stream_count=`curl -sfq -m1 ${STREAMER} | xsltproc $MK_CONFDIR/count-streams.xsl -`
|
||||
|
||||
_warn=${1:-3}
|
||||
_crit=${2:-6}
|
||||
_warn=${WARNLEVEL:-3}
|
||||
_crit=${CRITLEVEL:-6}
|
||||
|
||||
if [ $stream_count -ge $_crit ] ; then
|
||||
_data="OK - stream count $stream_count"
|
||||
|
|
Loading…
Reference in New Issue