jbussdieker-monit

This module manages installing, configuring and running processes using monit.


Keywords
ubuntu, monitoring, monit, process
License
Apache-2.0
Install
puppet module install jbussdieker-monit --version 0.0.5

Documentation

Monit Module

Build Status

This module manages installing, configuring and running processes using monit.

http://forge.puppetlabs.com/jbussdieker/monit

Parameters

  • ensure: running, stopped. default: running
  • start_command: Command line to start service.
  • stop_command: Command line to stop service.
  • pidfile: Location to find the pid file.

Usage

monit::process {'myapp':
  ensure        => running,
  start_command => '/etc/init.d/myapp start',
  stop_command  => '/etc/init.d/myapp stop',
  pidfile       => '/var/run/myapp/myapp.pid',
}