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@2643 61d68cd4-352d-0410-923a-c4978735b2b8
		
			
				
	
	
		
			29 lines
		
	
	
		
			840 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			840 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
## LMSensors Fanspeeds
 | 
						|
if ($device['os'] == "linux")
 | 
						|
{
 | 
						|
  $oids = snmp_walk($device, "lmFanSensorsDevice", "-OsqnU", "LM-SENSORS-MIB");
 | 
						|
  if ($debug) { echo($oids."\n"); }
 | 
						|
  $oids = trim($oids);
 | 
						|
  if ($oids) echo("LM-SENSORS ");
 | 
						|
  foreach (explode("\n", $oids) as $data)
 | 
						|
  {
 | 
						|
    $data = trim($data);
 | 
						|
    if ($data)
 | 
						|
    {
 | 
						|
      list($oid,$descr) = explode(" ", $data,2);
 | 
						|
      $split_oid = explode('.',$oid);
 | 
						|
      $index = $split_oid[count($split_oid)-1];
 | 
						|
      $oid  = "1.3.6.1.4.1.2021.13.16.3.1.3.". $index;
 | 
						|
      $current = snmp_get($device, $oid, "-Oqv", "LM-SENSORS-MIB");
 | 
						|
      $descr = trim(str_ireplace("fan-", "", $descr));
 | 
						|
      if ($current > '0')
 | 
						|
      {
 | 
						|
        discover_sensor($valid['sensor'], 'fanspeed', $device, $oid, $index, 'lmsensors', $descr, '1', '1', NULL, NULL, NULL, NULL, $current);
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
?>
 |