diff options
Diffstat (limited to 'etc/munin/plugins/jenkins_builds_results')
-rwxr-xr-x | etc/munin/plugins/jenkins_builds_results | 14 |
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 |