Forge Home

26,620 downloads

21,179 latest version

3.9 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.0.27 (latest)
  • 0.0.26
  • 0.0.25
  • 0.0.23
  • 0.0.21
  • 0.0.19
  • 0.0.18
  • 0.0.15
  • 0.0.14
  • 0.0.13
  • 0.0.10
  • 0.0.9
  • 0.0.7
  • 0.0.6
  • 0.0.5
  • 0.0.4
  • 0.0.1
released May 24th 2012

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'dhoppe-nagios', '0.0.27'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add dhoppe-nagios
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install dhoppe-nagios --version 0.0.27

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

dhoppe/nagios — version 0.0.27 May 24th 2012

Class: nagios

This module manages nagios

Definition:

nagios::command::commands

nagios::contact::contacts

nagios::contact::contactgroups

nagios::host::hosts

nagios::host::hostgroups

nagios::host::hostextinfo

nagios::service::services

nagios::service::servicegroups

nagios-nrpe::whitelist

Parameters:

Commands:

$command - specify the command_line

Contacts:

$alias - specify the contact

$email - specify the email, default is root@localhost

$group - specify the contactgroup

Contactgroups:

$alias - specify the contactgroup

Services:

$command - specify the check_command

$group - specify the servicegroup

Nagios-NRPE:

$whitelist - specify the whitelist, default is 127.0.0.1

Actions:

Installs the nagios.cfg etc.

Requires:

-

Sample Usage:

nagios::command::commands { "nrpe_check_apt":

command => '$USER1$/check_nrpe -H $HOSTADDRESS$ -c check_apt',

}

nagios::contact::contacts { $contacts[user]:

alias => $contacts[alias],

email => $contacts[email],

group => $contacts[group],

}

nagios::contact::contactgroups { $contactgroups[group]:

alias => $contactgroups[alias],

}

nagios::host::hosts { "$::hostname": }

nagios::host::hostgroups { $hostgroups: }

nagios::host::hostextinfo { "$::hostname": }

nagios::service::services { "apt":

command => "nrpe_check_apt",

}

nagios::service::servicegroups { $servicegroups: }

nagios-nrpe::whitelist { "/etc/nagios/nrpe.cfg":

whitelist => hiera('whitelist'),

}