summaryrefslogtreecommitdiff
path: root/puppet/modules/site_check_mk/manifests/agent/haproxy.pp
blob: e7986db15c44dd97753de39e1db1229d951c6fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class site_check_mk::agent::haproxy {

  include site_check_mk::agent::package::nagios_plugins_contrib

  # local nagios plugin checks via mrpe
  file_line {
    'haproxy':
      line => 'Haproxy  /usr/lib/nagios/plugins/check_haproxy -u "http://localhost:8000/haproxy;csv"',
      path => '/etc/check_mk/mrpe.cfg';
  }

}