Forge Home

10,786 downloads

9,935 latest version

3.7 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.4 (latest)
  • 0.0.3
  • 0.0.2
  • 0.0.1
released Dec 6th 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'jcurtis-nrpe', '0.0.4'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add jcurtis-nrpe
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install jcurtis-nrpe --version 0.0.4

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
Tags: nagios, nrpe

Documentation

jcurtis/nrpe — version 0.0.4 Dec 6th 2013

nrpe

This is the nrpe module.

License

Apache License, Version 2.0

Contact

Support

Please log tickets and issues at our github page (https://github.com/jaredcurtis/puppet-nrpe)

Example

node node.domain.tld {

# install and configure NRPE
class { 'nrpe': }

# accept connections from localhost and 10.13.37.1
nrpe::config { 'nrpe.cfg':
    allowed_hosts => '127.0.0.1,10.13.37.1',
}

nrpe::command {
    'check_users': cmd => "check_users -w 5 -c 10";
    'check_load':  cmd => "check_load -w 15,10,5 -c 30,25,20";
    'check_disks': cmd => "check_disk -w 20% -c 10%";
    'check_zombie_procs': cmd => "check_procs -w 5 -c 10 -s Z";
    'check_total_procs':  cmd => "check_procs -w 150 -c 250";
}

}