Forge Home

snmp_tasks_rhel

UNKNOWN

14,924 downloads

10,000 latest version

1.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

  • 1.3.5 (latest)
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.1
  • 1.0.0
  • 0.0.2
  • 0.0.1
released Aug 27th 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'llehmijo-snmp_tasks_rhel', '1.3.5'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add llehmijo-snmp_tasks_rhel
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install llehmijo-snmp_tasks_rhel --version 1.3.5

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

llehmijo/snmp_tasks_rhel — version 1.3.5 Aug 27th 2013

SNMP tasks Puppet Forge module for RHEL

Install

puppet module install llehmijo/snmp_tasks_rhel

Usage

Monitoring HTTP services

# In site.pp
node "superserver" {
  # Add smoke test task for an HTTP application
  snmp_tasks_rhel::http_smoke_test { "my-web-app":
    http_port            => 80,
    smoke_test_path      => "/",
    tasks_home_directory => "/opt/monitoring-tasks"
  }
}

The above snippet creates a Bash script /opt/monitoring-tasks/my-web-app-http_smoke_test.sh. Furthermore, it will add the script into /etc/snmp/snmpd.conf and restart Service['net-snmp'].

By default, the smoke test will hit localhost. You can change the host by adding the parameter http_hostname_or_ip.

Monitoring file emptiness

# In site.pp
node "superserver" {
  # Add file emptiness test
  snmp_tasks_rhel::file_emptiness_test { "my_app_error_log":
    file_to_test         => "/my/app/error.log",
    tasks_home_directory => "/opt/monitoring-tasks"
  }
}

The above snippet creates a Bash script /opt/monitoring-tasks/my_app_error_log-file_emptiness_test.rb. Furthermore, it will add the script into /etc/snmp/snmpd.conf and restart Service['net-snmp'].

This function will install Ruby, if it's not yet present.

Monitoring file timestamps

# In site.pp
node "superserver" {
  snmp_tasks_rhel::file_max_age { "cron-job-monitor":
    file_to_test         => "/opt/logs/cron-job-timestamp",
    max_age_in_days      => 1,
    error_message        => "Cronjob has not run within 1 days",
    tasks_home_directory => "/opt/monitoring-tasks"
  }
}

The above snippet creates a Bash script that will exit with code 1 if the file /opt/logs/cron-job-timestamp is more than one days old. Before exit, it will print the error_message.

You can also monitor files with one minute precision:

snmp_tasks_rhel::file_max_age_minutes { "cron-job-monitor":
  file_to_test         => "/opt/logs/cron-job-timestamp",
  max_age_in_minutes   => 5,
  error_message        => "Cronjob has not run within 5 minutes",
  tasks_home_directory => "/opt/monitoring-tasks"
}

Dependencies

This Puppet module depends on llehmijo/snmp_rhel.

Links

This project in Puppet Forge: http://forge.puppetlabs.com/llehmijo/snmp_tasks_rhel.

License

MIT