summaryrefslogtreecommitdiffstats
path: root/etc/munin/plugins/jenkins_builds_running
blob: 24084f10fae26338e6544c67497ef736d6a21d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh
# -*- sh -*-

: << =cut

=head1 NAME

jenkins_builds_running - Plugin to measure number of jenkins builds which are currently running

=head1 AUTHOR

Contributed by Holger Levsen

=head1 LICENSE

GPLv2

=head1 MAGIC MARKERS

 #%# family=auto
 #%# capabilities=autoconf

=cut

. $MUNIN_LIBDIR/plugins/plugin.sh

if [ "$1" = "autoconf" ]; then
	echo yes
	exit 0
fi

if [ "$1" = "config" ]; then
	echo 'graph_title Jenkins Builds running'
	echo 'graph_args --base 1000 -l 0 '
	echo 'graph_scale no'
	echo 'graph_vlabel Jenkins Builds currently running'
	echo 'graph_category jenkins'
	echo "jenkins_builds_running.label $PREFIX builds_running"
	echo "jenkins_builds_running.draw AREA"
	exit 0
fi

echo "jenkins_builds_running.value $(ps fax|grep /tmp/hudson|grep -v grep|wc -l)"