mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	git-svn-id: http://www.observium.org/svn/observer/trunk@2298 61d68cd4-352d-0410-923a-c4978735b2b8
		
			
				
	
	
		
			27 lines
		
	
	
		
			593 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			593 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env php
 | 
						|
<?php
 | 
						|
 | 
						|
include("includes/defaults.inc.php");
 | 
						|
include("config.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>`;
 | 
						|
}
 | 
						|
 | 
						|
?>
 |