summaryrefslogtreecommitdiffstats
path: root/etc/munin
diff options
context:
space:
mode:
Diffstat (limited to 'etc/munin')
-rwxr-xr-xetc/munin/plugins/jenkins_builds3
-rwxr-xr-xetc/munin/plugins/jenkins_builds_results3
-rwxr-xr-xetc/munin/plugins/jenkins_jobs3
3 files changed, 6 insertions, 3 deletions
diff --git a/etc/munin/plugins/jenkins_builds b/etc/munin/plugins/jenkins_builds
index 00d1342b..24480de2 100755
--- a/etc/munin/plugins/jenkins_builds
+++ b/etc/munin/plugins/jenkins_builds
@@ -35,7 +35,8 @@ if [ -f $STATEFILE ] && [ "$1" = "" ] ; then
exit 0
fi
-if [ "$1" = "update" ] ; then
+# delete statefile if it's older than 30min
+if test `find $STATEFILE -mmin +30`
rm -f $STATEFILE
fi
diff --git a/etc/munin/plugins/jenkins_builds_results b/etc/munin/plugins/jenkins_builds_results
index d38eb678..26dd2e34 100755
--- a/etc/munin/plugins/jenkins_builds_results
+++ b/etc/munin/plugins/jenkins_builds_results
@@ -35,7 +35,8 @@ if [ -f $STATEFILE ] && [ "$1" = "" ] ; then
exit 0
fi
-if [ "$1" = "update" ] ; then
+# delete statefile if it's older than 30min
+if test `find $STATEFILE -mmin +30`
rm -f $STATEFILE
fi
diff --git a/etc/munin/plugins/jenkins_jobs b/etc/munin/plugins/jenkins_jobs
index ee5e24aa..29898b1f 100755
--- a/etc/munin/plugins/jenkins_jobs
+++ b/etc/munin/plugins/jenkins_jobs
@@ -35,7 +35,8 @@ if [ -f $STATEFILE ] && [ "$1" = "" ] ; then
exit 0
fi
-if [ "$1" = "update" ] ; then
+# delete statefile if it's older than 30min
+if test `find $STATEFILE -mmin +30`
rm -f $STATEFILE
fi