dubture / nagios-php
Nagios php plugin
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/dubture/nagios-php
Requires
- monolog/monolog: ~1.13
- pimple/pimple: ~3.0
- symfony/class-loader: ~2.6
- symfony/console: ~2.6
- symfony/event-dispatcher: ~2.6
- symfony/finder: ~2.6
- symfony/process: ~2.6
Requires (Dev)
- phpunit/phpunit: ~4.5
This package is not auto-updated.
Last update: 2025-10-25 21:11:42 UTC
README
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.