aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/monitor.pp
blob: b57db9dadcbca0f70fca1d317bf7898778f15dd1 (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
class nodo::subsystem::monitor(
  $type       = 'vserver',
  $use_nagios = hiera('nodo::subsystem::monitor::use_nagios', True),
  $address    = hiera('nodo::subsystem::monitor::address',    $::ipaddress),
  $ping_rate  = hiera('nodo::subsystem::monitor::ping_rate', '!100.0,20%!500.0,60%')
) {

  if $use_nagios != false {

    if $type == 'vserver' {
      include nagios::target::fqdn
      nagios::service::ping { "${::fqdn}":
        ping_rate => $ping_rate,
      }
    }

    if $type == 'host' {
      class{ 'nagios::target':
        address => $address,
      }

      nagios::service::ping { "$address":
        ping_rate => $ping_rate,
      }
    }

  }

}