1. Go to this page and download the library: Download randomhost/icinga library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace randomhost\Icinga\Check;
class ExampleService extends Base implements Check
{
protected function check()
{
// main check logic goes here
$this->setMessage('Everything is fine');
$this->setCode(self::STATE_OK);
}
}
namespace randomhost\Icinga\Check;
class ExampleService extends Base implements Check
{
public function __construct()
{
$this->setLongOptions(
array(
'host:',
'port:',
'user:',
'password:',
'warningThreshold:',
'criticalThreshold:'
)
);
$this->setRequiredOptions(
array(
'host',
'port',
'user',
'password',
'warningThreshold',
'criticalThreshold'
)
);
$this->setHelp('
Icinga plugin for checking the example service.
--host Example service IP address or hostname
--port Example service port
--user Example service user
--password Example service password
--warningThreshold Threshold to trigger the WARNING state
--criticalThreshold Threshold to trigger the CRITICAL state
');
}
protected function check()
{
$options = $this->getOptions();
// main check logic goes here
}
}
namespace randomhost\Icinga\Notification;
class ExampleNotification extends Base implements Notification
{
protected function send()
{
// main notification logic goes here
$this->setMessage('Notification sent');
$this->setCode(self::STATE_OK);
}
}
namespace randomhost\Icinga\Notification;
class ExampleNotification extends Base implements Notification
{
public function __construct()
{
$this->setLongOptions(
array(
'type:',
'service:',
'host:',
'address:',
'state:',
'time:',
'output:',
'phonenumber:',
)
);
$this->setRequiredOptions(
array(
'type',
'service',
'host',
'address',
'state',
'time',
'output',
'phonenumber',
)
);
$this->setHelp('
Icinga plugin for sending notifications via the example notification provider.
--type Notification type
--service Service name
--host Host name
--address Host address
--state Service state
--time Notification time
--output Check plugin output
--phonenumber User phone number
');
}
protected function send()
{
$options = $this->getOptions();
// main notification logic goes here
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.