mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
41 lines
909 B
PHP
Executable File
41 lines
909 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
* LibreNMS
|
|
*
|
|
* This file is part of LibreNMS
|
|
*
|
|
* @package librenms
|
|
* @subpackage cli
|
|
* @author LibreNMS Group <librenms-project@google.groups.com>
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong (as Observium)
|
|
* @copyright (C) 2013 LibreNMS Group
|
|
*
|
|
*/
|
|
|
|
include("includes/defaults.inc.php");
|
|
include("config.php");
|
|
include("includes/definitions.inc.php");
|
|
include("includes/functions.php");
|
|
|
|
foreach (dbFetchRows("SELECT *, A.id AS id FROM `alerts` AS A, `devices` AS D WHERE A.device_id = D.device_id AND alerted = '0'") as $alert)
|
|
{
|
|
$id = $alert['id'];
|
|
$host = $alert['hostname'];
|
|
$date = $alert['time_logged'];
|
|
$msg = $alert['message'];
|
|
$alert_text .= "$date $host $msg";
|
|
|
|
dbUpdate(array('alerted' => '1'), 'alerts', '`id` = ?' array($id))
|
|
|
|
}
|
|
|
|
if ($alert_text)
|
|
{
|
|
echo("$alert_text");
|
|
# `echo '$alert_text' | gnokii --sendsms <NUMBER>`;
|
|
}
|
|
|
|
?>
|