summaryrefslogtreecommitdiffstats
path: root/etc/munin/plugins/jenkins_builds_results
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2012-12-01 14:48:39 +0100
committerHolger Levsen <holger@layer-acht.org>2012-12-01 15:41:36 +0100
commitf95a0ca45e12303fda54686fd77badfc4e2d0bd7 (patch)
tree87e392d802616663216fe9760182c9dbe50bb3c7 /etc/munin/plugins/jenkins_builds_results
parentf935c1f1060d97bb8a7e2263c9471568bfaf6194 (diff)
downloadjenkins.debian.net-f95a0ca45e12303fda54686fd77badfc4e2d0bd7.tar.xz
save state in statefiles and update them every 30min
Diffstat (limited to 'etc/munin/plugins/jenkins_builds_results')
-rwxr-xr-xetc/munin/plugins/jenkins_builds_results14
1 files changed, 12 insertions, 2 deletions
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