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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package icinga

Build Status

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.

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:

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:

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.


All versions of icinga with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package randomhost/icinga contains the following files

Loading the files please wait ....