summaryrefslogtreecommitdiffstats
path: root/etc/munin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2012-11-09 02:17:22 +0100
committerHolger Levsen <holger@layer-acht.org>2012-11-09 02:17:22 +0100
commit0564aa251313caffc5517dc45914455a724a241e (patch)
tree90b4864bc7a7e7fdd68d02b033eea8267e41ab4c /etc/munin
parent134733629ba1d13022513ebffc8c536e4fc1d8b7 (diff)
downloadjenkins.debian.net-0564aa251313caffc5517dc45914455a724a241e.tar.xz
beautify
Diffstat (limited to 'etc/munin')
-rwxr-xr-xetc/munin/plugins/jenkins_builds3
-rwxr-xr-xetc/munin/plugins/jenkins_jobs3
2 files changed, 4 insertions, 2 deletions
diff --git a/etc/munin/plugins/jenkins_builds b/etc/munin/plugins/jenkins_builds
index d0caa97b..bb2a4763 100755
--- a/etc/munin/plugins/jenkins_builds
+++ b/etc/munin/plugins/jenkins_builds
@@ -34,11 +34,12 @@ if [ "$1" = "config" ]; then
echo 'graph_title Jenkins Builds in the last 24h'
echo 'graph_args --base 1000 -l 0 '
echo 'graph_scale no'
+ echo 'graph_total total'
echo 'graph_vlabel Jenkins Builds per category in the last 24h'
echo 'graph_category jenkins'
for PREFIX in $JOB_PREFIXES ; do
echo "jenkins_builds_$PREFIX.label $PREFIX builds"
- echo "jenkins_builds_$PREFIX.draw AREA"
+ echo "jenkins_builds_$PREFIX.draw STACK"
#print_warning jenkins_builds_$PREFIX
#print_critical jenkins_builds_$PREFIX
done
diff --git a/etc/munin/plugins/jenkins_jobs b/etc/munin/plugins/jenkins_jobs
index 4b917b85..170a0333 100755
--- a/etc/munin/plugins/jenkins_jobs
+++ b/etc/munin/plugins/jenkins_jobs
@@ -34,11 +34,12 @@ if [ "$1" = "config" ]; then
echo 'graph_title Jenkins Jobs'
echo 'graph_args --base 1000 -l 0 '
echo 'graph_scale no'
+ echo 'graph_total total'
echo 'graph_vlabel Jenkins Jobs per category'
echo 'graph_category jenkins'
for PREFIX in $JOB_PREFIXES ; do
echo "jenkins_jobs_$PREFIX.label $PREFIX jobs"
- echo "jenkins_jobs_$PREFIX.draw AREA"
+ echo "jenkins_jobs_$PREFIX.draw STACK"
#print_warning jenkins_jobs_$PREFIX
#print_critical jenkins_jobs_$PREFIX
done