summaryrefslogtreecommitdiff
path: root/files/plugins/nagios_svc
blob: 39389993140d5db94b420608701ac539d41e834e (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
#!/bin/bash

if [ "$1" = "config" ]; then
	echo 'graph_title Nagios service stats'
	echo 'graph_args --base 1000 -l 0'
	echo 'graph_vlabel services'
	echo 'graph_category nagios'
	echo 'graph_info The number of services checked by nagios'
	echo 'ok.label ok'
	echo 'ok.draw AREA'
	echo 'ok.info number of services OK'
	echo 'warn.label warn'
	echo 'warn.draw STACK'
	echo 'warn.info number of services WARNING'
	echo 'crit.label crit'
	echo 'crit.draw STACK'
	echo 'crit.info number of services CRITICAL'
	echo 'unkn.label unkn'
	echo 'unkn.draw STACK'
	echo 'unkn.info number of services UNKNOWN'

	exit 0
fi

echo -n 'ok.value '
nagios2stats --mrtg --data NUMSVCOK
echo -n 'warn.value '
nagios2stats --mrtg --data NUMSVCWARN
echo -n 'crit.value '
nagios2stats --mrtg --data NUMSVCCRIT
echo -n 'unkn.value '
nagios2stats --mrtg --data NUMSVCUNKN