device: Added proc and mem support TPLink JetStream devices #5462 (#5817)

This commit is contained in:
Neil Lathwood
2017-02-09 08:46:59 +00:00
committed by GitHub
parent 585a4a6736
commit f7d65d0ee2
6 changed files with 350 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?php
/**
* jetstream.inc.php
*
* LibreNMS mempool poller module for jetstream
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2017 Neil Lathwood
* @author Neil Lathwood <neil@lathwood.co.uk>
*/
if ($device['os'] === 'jetstream') {
$oid = '.1.3.6.1.4.1.11863.6.4.1.2.1.1.2.' . $mempool['mempool_index'];
$used = snmp_get($device, $oid, '-OvQ');
$mempool['total'] = 100;
$mempool['free'] = ($mempool['total'] - $used);
$mempool['used'] = $used;
}
unset(
$oid,
$used
);