librenms/includes/discovery/sensors.inc.php
Neil Lathwood d4e8c54516 refactor: Tidy up sensor discovery (#5550)
* refactor: Tidy up sensor discovery

* more files

* removed uneeded files

* updated array check

* updates for linux/supermicro

* small changes

* Update linux.inc.php

* Add supermicro temps back to linux.inc.php

* No need for is_file on rfc1628.inc.php, it exists

* Revert rfc1628 change

* Fix whitespace...

* rebased

* fixed $valid data not being passed to new sensors() function
2017-02-03 06:39:38 -06:00

45 lines
1.0 KiB
PHP

<?php
$valid['sensor'] = array();
// Pre-cache data for later use
require 'includes/discovery/sensors/pre-cache.inc.php';
// Run custom sensors
require 'includes/discovery/sensors/cisco-entity-sensor.inc.php';
require 'includes/discovery/sensors/entity-sensor.inc.php';
require 'includes/discovery/sensors/ipmi.inc.php';
if ($device['os'] == 'netscaler') {
include 'includes/discovery/sensors/netscaler.inc.php';
}
if ($device['os'] == 'openbsd') {
include 'includes/discovery/sensors/openbsd.inc.php';
}
if (strstr($device['hardware'], 'Dell')) {
include 'includes/discovery/sensors/fanspeeds/dell.inc.php';
include 'includes/discovery/sensors/states/dell.inc.php';
include 'includes/discovery/sensors/temperatures/dell.inc.php';
}
$run_sensors = array(
'airflow',
'current',
'charge',
'dbm',
'fanspeeds',
'frequencies',
'humidity',
'load',
'power',
'runtime',
'signal',
'states',
'temperatures',
'voltages',
);
sensors($run_sensors, $device, $valid, $pre_cache);
unset($pre_cache);