From f95a0ca45e12303fda54686fd77badfc4e2d0bd7 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 1 Dec 2012 14:48:39 +0100 Subject: save state in statefiles and update them every 30min --- etc/munin/plugins/jenkins_builds_results | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'etc/munin/plugins/jenkins_builds_results') diff --git a/etc/munin/plugins/jenkins_builds_results b/etc/munin/plugins/jenkins_builds_results index ab36f1b2..d38eb678 100755 --- a/etc/munin/plugins/jenkins_builds_results +++ b/etc/munin/plugins/jenkins_builds_results @@ -29,10 +29,20 @@ if [ "$1" = "autoconf" ]; then exit 0 fi +STATEFILE=$MUNIN_PLUGSTATE/$(basename $0) +if [ -f $STATEFILE ] && [ "$1" = "" ] ; then + cat $STATEFILE + exit 0 +fi + +if [ "$1" = "update" ] ; then + rm -f $STATEFILE +fi + JOB_PREFIXES=$(ls -1 /var/lib/jenkins/jobs/|cut -d "_" -f1|sort -f -u) if [ "$1" = "config" ]; then - echo 'graph_title Jenkins Build results' + echo 'graph_title Jenkins Builds results' echo 'graph_args --base 1000 -l 0 ' echo 'graph_scale no' echo 'graph_total total' @@ -59,6 +69,6 @@ for PREFIX in $JOB_PREFIXES ; do else NR=$(echo -e "$PREFIX_RESULTS" | grep -i -c $STATE) fi - echo "jenkins_builds_results_${PREFIX}_${STATE}.value $NR" + echo "jenkins_builds_results_${PREFIX}_${STATE}.value $NR" | tee -a $STATEFILE done done -- cgit v1.2.3-70-g09d2