Download the PHP package randomhost/icinga without Composer
On this page you can find all versions of the php package randomhost/icinga. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download randomhost/icinga
More information about randomhost/icinga
Files in randomhost/icinga
Package icinga
Short Description Provides Icinga check and notification commands.
License BSD-3-Clause
Homepage https://www.random-host.com
Informations about the package icinga
randomhost/icinga
This package provides check and notification commands for the Icinga monitoring system.
Usage
The Base class
The abstract Base
class implements the following public methods which are
available for both, check and notification classes.
-
Base::getShortOptions()
Returns available short options. The return value is supposed to be passed to PHP's built-ingetopt()
function as the first parameter and is used for setting up the command line arguments accepted by the check class. -
Base::getLongOptions()
Returns available long options. The return value is supposed to be passed to PHP's built-ingetopt()
function as the second parameter and is used for setting up the command line arguments accepted by the check class.The
Base
class comes with the pre-defined long option--help
which triggers the built-in help methodBase::displayHelp()
. -
Base::getMessage()
Returns the plugin output. The return value is supposed to be echoed to stdout and defines the status message which will be passed to Icinga. -
Base::getCode()
Returns the return code. The return value is supposed to be passed to PHP's built-inexit()
function and defines the status code which will be passed to Icinga. Base::setOptions($options)
This method accepts parsed command line arguments as returned by PHP's built-ingetopt()
function.
Check and notification classes should NOT extend this class directly. They
should extend their corresponding base class Check\Base
or Notification\Base
accordingly.
Check plugins
A basic approach at using a check plugin built with this package could look like this:
This will instantiate the check class for the example service and run the checks defined for that service. What is being checked depends on the individual check implementation.
The Check\Base class
The abstract Check\Base
class provides common methods for extending child
classes. It implements one public method in addition to the ones provided by
the common Base
class:
Check\Base::run()
Takes care of validating command line parameters, displaying help output and executing the main check plugin logic.
All check classes should extend this class.
Implementing check classes
To create a check class, simply extend the Check\Base
class and implement a
protected method check()
.
If your check requires command line parameters, you can define those in the constructor of your check class. This is also the right place to place the help output which is shown if a required parameter is missing.
Notification plugins
A basic approach at using a notification plugin built with this package could look like this:
This will instantiate the notification class for the example notification plugin and run the logic defined for that plugin. What type of notification is being sent depends on the individual notification class implementation.
The Notification\Base class
The abstract Notification\Base
class provides common methods for extending
child classes. It implements one public method in addition to the ones provided
by the common Base
class:
Notification\Base::run()
Takes care of validating command line parameters, displaying help output and executing the main notification plugin logic.
All notification classes should extend this class.
Implementing notification classes
To create a notification class, simply extend the Notification\Base
class and
implement a protected method send()
.
If your notification class requires command line parameters, you can define those in the constructor of your notification class. This is also the right place to place the help output which is shown if a required parameter is missing.
License
See LICENSE.txt for full license details.