$entry) { #echo("[" . $entry['entPhySensorType'] . "|" . $entry['entPhySensorValue']. "|" . $index . "]"); if($entitysensor[$entry['entPhySensorType']] && is_numeric($entry['entPhySensorValue']) && is_numeric($index)) { $entPhysicalIndex = $index; $descr = snmp_get($device, "entPhysicalDescr.".$index, "-Oqv", "ENTITY-SENSOR-MIB"); $oid = ".1.3.6.1.2.1.99.1.1.1.4.".$index; $current = $entry['entPhySensorValue']; #ENTITY-SENSOR-MIB::entPhySensorUnitsDisplay.11 = STRING: "C" $type = $entitysensor[$entry['entPhySensorType']]; $descr = str_replace("temperature", "", $descr); $descr = str_replace("temperature", "", $descr); $descr = str_replace("sensor", "", $descr); ### FIXME this stuff is foul if($entry['entPhySensorScale'] == "nano") { $divisor = "1000000000"; $multiplier = "1"; } if($entry['entPhySensorScale'] == "micro") { $divisor = "1000000"; $multiplier = "1"; } if($entry['entPhySensorScale'] == "milli") { $divisor = "1000"; $multiplier = "1"; } if($entry['entPhySensorScale'] == "units") { $divisor = "1"; $multiplier = "1"; } if($entry['entPhySensorScale'] == "kilo") { $divisor = "1"; $multiplier = "1000"; } if($entry['entPhySensorScale'] == "mega") { $divisor = "1"; $multiplier = "1000000"; } if($entry['entPhySensorScale'] == "giga") { $divisor = "1"; $multiplier = "1000000000"; } if(is_numeric($entry['entPhySensorPrecision']) && $entry['entPhySensorPrecision'] > "0") { $multiplier = $multiplier . str_pad('', $entry['entPhySensorPrecision'], "0"); } #echo("|".$entry['entPhySensorScale']."|".$entry['entPhySensorPrecision']."|".$divisor."|".$multiplier."|"); $current = $current * $multiplier / $divisor; if(mysql_result(mysql_query("SELECT COUNT(*) FROM `sensors` WHERE `device_id` = '".$device['device_id']."' AND `sensor_class` = '".$type."' AND `sensor_type` = 'cisco-entity-sensor' AND `sensor_index` = '".$index."'"),0) == "0") ## Check to make sure we've not already seen this sensor via cisco's entity sensor mib { discover_sensor($valid_sensor, $type, $device, $oid, $index, 'entity-sensor', $descr, $divisor, $multiplier, NULL, NULL, NULL, NULL, $current); } } } } ?>