mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
move hddtemp to unix-agent/ instead of applications/
git-svn-id: http://www.observium.org/svn/observer/trunk@3214 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
23
includes/polling/unix-agent/hddtemp.inc.php
Normal file
23
includes/polling/unix-agent/hddtemp.inc.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
global $agent_sensors;
|
||||
|
||||
include_once("includes/discovery/functions.inc.php");
|
||||
|
||||
$disks = explode('||',trim($agent_data['hddtemp'],'|'));
|
||||
|
||||
if (count($disks))
|
||||
{
|
||||
echo "hddtemp: ";
|
||||
foreach ($disks as $disk)
|
||||
{
|
||||
list($blockdevice,$descr,$temperature,$unit) = explode('|',$disk,4);
|
||||
$diskcount++;
|
||||
discover_sensor($valid['sensor'], 'temperature', $device, '', $diskcount, 'hddtemp', "$blockdevice: $descr", '1', '1', NULL, NULL, NULL, NULL, $temperature, 'agent');
|
||||
|
||||
$agent_sensors['temperature']['hddtemp'][$diskcount] = array('description' => "$blockdevice: $descr", 'current' => $temperature, 'index' => $diskcount);
|
||||
}
|
||||
echo "\n";
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user