summaryrefslogtreecommitdiff
path: root/puppet/modules/site_check_mk/manifests/agent
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2014-02-25 16:45:33 +0100
committervarac <varacanero@zeromail.org>2014-02-27 18:12:15 +0100
commit0a6fbced6f2177464c000fc79a90c03171a3bcf6 (patch)
tree2ea65e7fcaf5dd604a850f8602bde8b9378f2f8a /puppet/modules/site_check_mk/manifests/agent
parent40b13221967368060773af008f791ca7a053d18d (diff)
complete nagios monitoring for couchdb (Feature #2175)
Diffstat (limited to 'puppet/modules/site_check_mk/manifests/agent')
-rw-r--r--puppet/modules/site_check_mk/manifests/agent/couchdb.pp14
1 files changed, 13 insertions, 1 deletions
diff --git a/puppet/modules/site_check_mk/manifests/agent/couchdb.pp b/puppet/modules/site_check_mk/manifests/agent/couchdb.pp
index 9456efcc..97e4a777 100644
--- a/puppet/modules/site_check_mk/manifests/agent/couchdb.pp
+++ b/puppet/modules/site_check_mk/manifests/agent/couchdb.pp
@@ -1,13 +1,25 @@
class site_check_mk::agent::couchdb {
+ # watch logs
file { '/etc/check_mk/logwatch.d/bigcouch.cfg':
source => 'puppet:///modules/site_check_mk/agent/logwatch/bigcouch.cfg',
}
-
concat::fragment { 'syslog_couchdb':
source => 'puppet:///modules/site_check_mk/agent/logwatch/syslog/couchdb.cfg',
target => '/etc/check_mk/logwatch.d/syslog.cfg',
order => '02';
}
+
+ # check bigcouch processes
+ file_line {
+ 'Bigcouch_epmd_procs':
+ line => 'Bigcouch_epmd_procs /usr/lib/nagios/plugins/check_procs -w 1:1 -c 1:1 -a /opt/bigcouch/erts-5.9.1/bin/epmd',
+ path => '/etc/check_mk/mrpe.cfg';
+ 'Bigcouch_beam_procs':
+ line => 'Bigcouch_beam_procs /usr/lib/nagios/plugins/check_procs -w 1:1 -c 1:1 -a /opt/bigcouch/erts-5.9.1/bin/beam',
+ path => '/etc/check_mk/mrpe.cfg';
+ }
+
+
}