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/plugins/jenkins_jobs | |
parent | 134733629ba1d13022513ebffc8c536e4fc1d8b7 (diff) | |
download | jenkins.debian.net-0564aa251313caffc5517dc45914455a724a241e.tar.xz |
beautify
Diffstat (limited to 'etc/munin/plugins/jenkins_jobs')
-rwxr-xr-x | etc/munin/plugins/jenkins_jobs | 3 |
1 files changed, 2 insertions, 1 deletions
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 |