Sending statuses to a Nagios server using the NRDP protocol
konnectit/laravel-nagios-nrdp is a Laravel package for sending statuses to a nagios server using the nrdp protocol.
It currently has 2 GitHub stars and 285 downloads on Packagist (latest version 2.0).
Install it with composer require konnectit/laravel-nagios-nrdp.
Discover more Laravel packages by konnectit
or browse all Laravel packages to compare alternatives.
Last updated
This package is sending messages to your Nagios Server via NRDP. This means that you also have to install the NRDP server service to your Nagios Monitoring Server. The package for the server service can be found here:
https://github.com/NagiosEnterprises/nrdp
You can install the package via composer:
composer require konnectit/laravel-nagios-nrdp
use KonnectIT\LaravelNagiosNrdp\HostStates;
\NagiosNrdp::state(HostStates::HOST_OK)->send('OK');
use KonnectIT\LaravelNagiosNrdp\ServiceStates;
\NagiosNrdp::service('PHP extensions')->state(ServiceStates::SERVICE_OK)->send('All services OK');
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.