Files
librenms-librenms/includes/polling/mempools/dell-net.inc.php
Erik 610fde83ec Removed double Stack Temperature Discovery and Fixed typos in dbm discovery for Dell Switches (#10630)
* Fixed typos in dbm discovery for Dell Switches

Fixed typos in dbm discovery for Dell Switches

* Skip value 0 in temperature sensors

* Update dnos.yaml

* Remove temp M-serie from php, already in yaml

* Create dnos_s4048.snmpsim

* Rename dnos_s4048.snmpsim to dnos_s4048.snmprec

* Create dnos_s4048.json

* Create dell-net.inc.php

Added mempool for Dell Net switches

* Update dnos.yaml

Removed whitespaces in dnos.yaml

* Update dnos_s4048.json

* Delete dnos.json

* Create dnos.json
2019-10-21 01:41:32 +00:00

22 lines
863 B
PHP

<?php
/*
* * LibreNMS DELL net memory information module
* *
* * Copyright (c) 2019 Erik van Helden
* * 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. Please see LICENSE.txt at the top level of
* * the source code distribution for details.
* */
$total = snmp_get($device, '.1.3.6.1.4.1.6027.3.26.1.4.3.1.6.2.1.1', '-OvQ');
$usage = snmp_get($device, '.1.3.6.1.4.1.6027.3.26.1.4.4.1.6.2.1.1', '-OvQ');
$usage_perc = $usage / 100;
$used = $total * $usage_perc;
$free = $total - $used;
$mempool['total'] = $total * 1024 * 1024;
$mempool['free'] = $free * 1024 * 1024;
$mempool['used'] = $used * 1024 * 1024;