Puppet Class: splunk::monitor::mgmt_port

Defined in:
manifests/monitor/mgmt_port.pp

Overview

Monitor the Splunk MGMT Port default 8089

Parameters:

  • nagios_contacts (Any) (defaults to: $::splunk::nagios_contacts)


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'manifests/monitor/mgmt_port.pp', line 2

class splunk::monitor::mgmt_port (
  $nagios_contacts = $::splunk::nagios_contacts
) {
  # Nagios Service Check
  if ( $nagios_contacts ) {
    @@nagios_service { "check_tcp8089_${::hostname}":
      use                 => 'default-service',
      check_command       => 'check_tcp!8089',
      host_name           => $::fqdn,
      contacts            => $nagios_contacts,
      service_description => 'Splunk Management Port',
      notify              => Service['nagios'],
      tag                 => $::environment,
    }
  }
}