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_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