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@2340 61d68cd4-352d-0410-923a-c4978735b2b8
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
$class = 'temperature';
 | 
						|
$unit = 'C';
 | 
						|
 | 
						|
$query = "SELECT * FROM sensors WHERE sensor_class='$class' AND device_id = '" . $device['device_id'] . "' AND poller_type='snmp'";  
 | 
						|
$sensor_data = mysql_query($query);
 | 
						|
 | 
						|
while ($sensor = mysql_fetch_assoc($sensor_data))
 | 
						|
{
 | 
						|
  echo("Checking temp " . $sensor['sensor_descr'] . "... ");
 | 
						|
 | 
						|
  for ($i = 0;$i < 5;$i++) # Try 5 times to get a valid temp reading
 | 
						|
  {
 | 
						|
    if ($debug) echo("Attempt $i ");
 | 
						|
    $sensor_value = snmp_get($device, $sensor['sensor_oid'], "-OUqnv", "SNMPv2-MIB");
 | 
						|
    $sensor_value = trim(str_replace("\"", "", $sensor_value));
 | 
						|
 | 
						|
    if ($sensor_value != 9999) break; # TME sometimes sends 999.9 when it is right in the middle of an update;
 | 
						|
    sleep(1); # Give the TME some time to reset
 | 
						|
  }
 | 
						|
 | 
						|
  if ($sensor['sensor_divisor'])    { $sensor_value = $sensor_value / $sensor['sensor_divisor']; }
 | 
						|
  if ($sensor['sensor_multiplier']) { $sensor_value = $sensor_value * $sensor['sensor_multiplier']; }
 | 
						|
 | 
						|
  $old_rrd_file = $config['rrd_dir'] . "/" . $device['hostname'] . "/$class-" . safename($sensor['sensor_type']."-".$sensor['sensor_index']) . ".rrd";
 | 
						|
 | 
						|
  $rrd_file = get_sensor_rrd($device, $sensor);
 | 
						|
 | 
						|
  if (is_file($old_rrd_file)) { rename($old_rrd_file, $rrd_file); }
 | 
						|
 | 
						|
  if (!is_file($rrd_file))
 | 
						|
  {
 | 
						|
    rrdtool_create($rrd_file,"--step 300 \
 | 
						|
     DS:sensor:GAUGE:600:-273:1000 \
 | 
						|
     RRA:AVERAGE:0.5:1:600 \
 | 
						|
     RRA:AVERAGE:0.5:6:700 \
 | 
						|
     RRA:AVERAGE:0.5:24:775 \
 | 
						|
     RRA:AVERAGE:0.5:288:797 \
 | 
						|
     RRA:MAX:0.5:1:600 \
 | 
						|
     RRA:MAX:0.5:6:700 \
 | 
						|
     RRA:MAX:0.5:24:775 \
 | 
						|
     RRA:MAX:0.5:288:797\
 | 
						|
     RRA:MIN:0.5:1:600 \
 | 
						|
     RRA:MIN:0.5:6:700 \
 | 
						|
     RRA:MIN:0.5:24:775 \
 | 
						|
     RRA:MIN:0.5:288:797");
 | 
						|
  }
 | 
						|
 | 
						|
  echo("$sensor_value $unit\n");
 | 
						|
 | 
						|
  rrdtool_update($rrd_file,"N:$sensor_value");
 | 
						|
 | 
						|
  if ($sensor['sensor_limit_low'] != "" && $sensor['sensor_current'] < $sensor['sensor_limit'] && $sensor_value >= $sensor['sensor_limit'])
 | 
						|
  {
 | 
						|
    $msg  = "Temp Alarm: " . $device['hostname'] . " " . $sensor['sensor_descr'] . " is " . $sensor_value . " (Limit " . $sensor['sensor_limit'];
 | 
						|
    $msg .= ") at " . date($config['timestamp_format']);
 | 
						|
    notify($device, "Temp Alarm: " . $device['hostname'] . " " . $sensor['sensor_descr'], $msg);
 | 
						|
    echo("Alerting for " . $device['hostname'] . " " . $sensor['sensor_descr'] . "\n");
 | 
						|
    log_event('Temperature ' . $sensor['sensor_descr'] . " over threshold: " . $sensor_value . " " . html_entity_decode('°') . "$unit (>= " . $sensor['sensor_limit'] . " " . html_entity_decode('°') . "$unit)", $device, $class, $sensor['sensor_id']);
 | 
						|
  }
 | 
						|
 | 
						|
  mysql_query("UPDATE sensors SET sensor_current = '$sensor_value' WHERE sensor_class='$class' AND sensor_id = '" . $sensor['sensor_id'] . "'");
 | 
						|
}
 | 
						|
 | 
						|
?>
 |