librenms/scripts/test-alert.php
Tony Murray 61c89794e4
Remove debug globals (#12811)
* Remove $debug global
and $vdebug global
makes these variables more accessible and protects from collisions.

* the on boot set sends application as the first parameter, just handle that

* Relocate other debug related functions

* Log debug to stdout

* Wrong output

* remove stupid constants

* Fix lint and style issues
2021-04-29 22:42:18 -05:00

44 lines
1.1 KiB
PHP
Executable File

#!/usr/bin/env php
<?php
use LibreNMS\Alert\RunAlerts;
use LibreNMS\Util\Debug;
$init_modules = ['alerts', 'laravel'];
require __DIR__ . '/../includes/init.php';
$options = getopt('t:h:r:p:s:d::');
if (isset($options['r']) && isset($options['h'])) {
Debug::set(isset($options['d']));
$runAlerts = new RunAlerts();
$rule_id = (int) $options['r'];
$device_id = ctype_digit($options['h']) ? $options['h'] : getidbyname($options['h']);
$where = "alerts.device_id = $device_id && alerts.rule_id = $rule_id";
$alerts = $runAlerts->loadAlerts($where);
if (empty($alerts)) {
echo 'No active alert found, please check that you have the correct ids';
exit(2);
}
$alert = $alerts[0];
$alert['details']['delay'] = 0;
$alert['note'] = 'Testing';
$runAlerts->issueAlert($alert);
} else {
c_echo('
Info:
Use this to send an actual alert via transports that is currently active.
Usage:
-r Is the Rule ID.
-h Is the device ID or hostname
-d Debug
Example:
./scripts/test-alert.php -r 4 -d -h localhost
');
exit(1);
}