forked from librenms/librenms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-alert.php
More file actions
executable file
·43 lines (35 loc) · 1.07 KB
/
Copy pathtest-alert.php
File metadata and controls
executable file
·43 lines (35 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/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);
}