diff options
author | Holger Levsen <holger@layer-acht.org> | 2012-11-09 02:17:22 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2012-11-09 02:17:22 +0100 |
commit | 0564aa251313caffc5517dc45914455a724a241e (patch) | |
tree | 90b4864bc7a7e7fdd68d02b033eea8267e41ab4c /etc/munin | |
parent | 134733629ba1d13022513ebffc8c536e4fc1d8b7 (diff) | |
download | jenkins.debian.net-0564aa251313caffc5517dc45914455a724a241e.tar.xz |
beautify
Diffstat (limited to 'etc/munin')
-rwxr-xr-x | etc/munin/plugins/jenkins_builds | 3 | ||||
-rwxr-xr-x | etc/munin/plugins/jenkins_jobs | 3 |
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 |