2017-02-09 08:46:59 +00:00
|
|
|
<?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>
|
|
|
|
*/
|
|
|
|
|
2017-04-15 02:01:45 +01:00
|
|
|
$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;
|
2017-02-09 08:46:59 +00:00
|
|
|
|
|
|
|
unset(
|
|
|
|
$oid,
|
|
|
|
$used
|
|
|
|
);
|