dubture/nagios-php

There is no license information available for the latest version (0.0.2) of this package.

Nagios php plugin

0.0.2 2015-03-14 11:23 UTC

This package is not auto-updated.

Last update: 2024-04-27 13:48:30 UTC


README

Build Status Scrutinizer Code Quality

Simple utility to help writing nagios plugins in PHP inspired by the Silex microframework.

Usage:

Example - check_hello :

<?php 

require_once __DIR__ . '/nagios.phar';

use Dubture\Nagios\Plugin;

$plugin = new Plugin();
$plugin->run(function($name, $foo = 'bar') use ($plugin) {
                
    return array(Plugin::OK, array('hello' => $name, $foo));
    
});

Running the above plugin using check_hello pulse00 will result in an nagios service state OK and the multiline output:

hello | pulse00
bar

The Dubture\Nagios\Plugin::run() method expects a Closure whose method signature determines the nagios plugin arguments. A parameter without a default value represents a mandatory argument, a parameter with a default value represents an optional argument.

The plugin in the above example has one mandatory argument name and an optional argument foo with the default value bar.

The Closure should return an array with the status code as the first element and the output as the second argument, which will be formatted after the following rules:

  • If the second array element is a string, the output is a single-line message
  • If the second array element is an array, the output is a multi-line message.
  • Every element of the multiline message can either be a simple message (literal value), or a message / performance output if the array paramater is a key/value pair.

Installation

Download and include the nagios.phar file. That's all.