From 0150982fe9bd78eb9724bdb6f2e4f88118ada839 Mon Sep 17 00:00:00 2001 From: Calvario Date: Wed, 10 Jun 2015 18:02:32 +0200 Subject: [PATCH] Temperature Support for Synology The poller return now the correct value for the System temperature. Check in my Synology. --- AUTHORS.md | 1 + includes/discovery/temperatures/dsm.inc.php | 41 ++++++++++++++------- 2 files changed, 28 insertions(+), 14 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 38e7bb690..28727ee73 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -31,6 +31,7 @@ Contributors to LibreNMS: - Thom Seddon (thomseddon) - Vitali Kari (vitalisator) - James Campbell (neokjames) +- Steve Calvário (Calvario) [1]: http://observium.org/ "Observium web site" diff --git a/includes/discovery/temperatures/dsm.inc.php b/includes/discovery/temperatures/dsm.inc.php index 27b6942cd..9d16dd2d6 100644 --- a/includes/discovery/temperatures/dsm.inc.php +++ b/includes/discovery/temperatures/dsm.inc.php @@ -1,21 +1,34 @@ $entry) { - $oid = $index; - $disk_oid = $cur_oid.$index; - $current = $entry['diskTemperature']; - $descr = $entry['diskID'] . ' ' . $entry['diskModel']; - discover_sensor($valid['sensor'], 'temperature', $device, $disk_oid, $oid, 'snmp', $descr, '1', '1', NULL, NULL, NULL, NULL, $current); + echo "DSM temperature "; + + // DiskStation Temperature + $diskstation_temperature_oid = '.1.3.6.1.4.1.6574.1.2.0'; + // DiskStation Disk Temperature + $disk_temperature_oid = '.1.3.6.1.4.1.6574.2.1.1.6.'; + + + // Get DiskStation temperature + $diskstation_temperature = snmp_get($device, $diskstation_temperature_oid, "-Oqv"); + // Save the DiskStation temperature + discover_sensor($valid['sensor'], 'temperature', $device, $diskstation_temperature_oid, '2', 'snmp', 'System Temperature', '1', '1', NULL, NULL, NULL, NULL, $diskstation_temperature); + + + // Get all disks in the device + $disks = snmpwalk_cache_multi_oid($device, 'diskTable', array(), 'SYNOLOGY-DISK-MIB'); + // Parse all disks in the device to get the temperature + if (is_array($disks)) { + foreach ($disks as $disk_number => $entry) { + // Get the disk temperature full oid + $disk_oid = $disk_temperature_oid.$disk_number; + // Get the temperature for the disk + $disk_temperature = $entry['diskTemperature']; + // Getting the disk information (Number and model) + $disk_information = $entry['diskID'] . ' ' . $entry['diskModel']; + // Save the temperature for the disk + discover_sensor($valid['sensor'], 'temperature', $device, $disk_oid, $disk_number, 'snmp', $disk_information, '1', '1', NULL, NULL, NULL, NULL, $disk_temperature); } } }