summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfiles/plugins/nagios_hosts6
-rwxr-xr-xfiles/plugins/nagios_perf_4
-rwxr-xr-xfiles/plugins/nagios_svc8
-rw-r--r--manifests/plugins/nagios.pp12
4 files changed, 21 insertions, 9 deletions
diff --git a/files/plugins/nagios_hosts b/files/plugins/nagios_hosts
index 04fe8ed..842ef43 100755
--- a/files/plugins/nagios_hosts
+++ b/files/plugins/nagios_hosts
@@ -20,9 +20,9 @@ if [ "$1" = "config" ]; then
fi
echo -n 'up.value '
-nagios2stats --mrtg --data NUMHSTUP
+nagiostats --mrtg --data NUMHSTUP
echo -n 'down.value '
-nagios2stats --mrtg --data NUMHSTDOWN
+nagiostats --mrtg --data NUMHSTDOWN
echo -n 'unr.value '
-nagios2stats --mrtg --data NUMHSTUNR
+nagiostats --mrtg --data NUMHSTUNR
diff --git a/files/plugins/nagios_perf_ b/files/plugins/nagios_perf_
index f819def..4d292c7 100755
--- a/files/plugins/nagios_perf_
+++ b/files/plugins/nagios_perf_
@@ -30,6 +30,6 @@ if [ "$1" = "config" ]; then
exit 0
fi
-echo "act_lat_$TYPE_ABBR.value " $(nagios2stats --mrtg --data AVGACT${TYPE_ABBR}LAT)
-echo "act_ext_$TYPE_ABBR.value " $(nagios2stats --mrtg --data AVGACT${TYPE_ABBR}EXT)
+echo "act_lat_$TYPE_ABBR.value " $(nagiostats --mrtg --data AVGACT${TYPE_ABBR}LAT)
+echo "act_ext_$TYPE_ABBR.value " $(nagiostats --mrtg --data AVGACT${TYPE_ABBR}EXT)
diff --git a/files/plugins/nagios_svc b/files/plugins/nagios_svc
index 3938999..86fcabf 100755
--- a/files/plugins/nagios_svc
+++ b/files/plugins/nagios_svc
@@ -23,11 +23,11 @@ if [ "$1" = "config" ]; then
fi
echo -n 'ok.value '
-nagios2stats --mrtg --data NUMSVCOK
+nagiostats --mrtg --data NUMSVCOK
echo -n 'warn.value '
-nagios2stats --mrtg --data NUMSVCWARN
+nagiostats --mrtg --data NUMSVCWARN
echo -n 'crit.value '
-nagios2stats --mrtg --data NUMSVCCRIT
+nagiostats --mrtg --data NUMSVCCRIT
echo -n 'unkn.value '
-nagios2stats --mrtg --data NUMSVCUNKN
+nagiostats --mrtg --data NUMSVCUNKN
diff --git a/manifests/plugins/nagios.pp b/manifests/plugins/nagios.pp
index 93a261c..c07e99d 100644
--- a/manifests/plugins/nagios.pp
+++ b/manifests/plugins/nagios.pp
@@ -1,8 +1,20 @@
class munin::plugins::nagios inherits munin::plugins::base {
+
munin::plugin::deploy {
nagios_hosts: config => 'user root';
nagios_svc: config => 'user root';
nagios_perf_hosts: ensure => nagios_perf_, config => 'user root';
nagios_perf_svc: ensure => nagios_perf_, config => 'user root';
}
+
+ exec { 'munin_nagios2stats_link':
+ command => 'ln -s /usr/sbin/nagios2stats /usr/local/sbin/nagiostats',
+ onlyif => ["test ! -e /usr/local/sbin/nagiostats", "test -e /usr/sbin/nagios2stats"],
+ }
+
+ exec { 'munin_nagios3stats_link':
+ command => 'ln -s /usr/sbin/nagios3stats /usr/local/sbin/nagiostats',
+ onlyif => ["test ! -e /usr/local/sbin/nagiostats", "test -e /usr/sbin/nagios3stats"],
+ }
+
}