2015-12-04 15:35:02 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
if ($device['os'] == "nos") {
|
2015-12-08 16:24:12 +01:00
|
|
|
echo("nos: ");
|
2015-12-04 15:35:02 +01:00
|
|
|
|
2016-08-28 12:32:58 -05:00
|
|
|
$used = snmp_get($device, "1.3.6.1.4.1.1588.2.1.1.1.26.6.0", "-Ovq");
|
|
|
|
|
$total = "100";
|
|
|
|
|
$free = ($total - $used);
|
2015-12-04 15:35:02 +01:00
|
|
|
|
2016-08-28 12:32:58 -05:00
|
|
|
$percent = $used;
|
2015-12-04 15:35:02 +01:00
|
|
|
|
2015-12-08 16:24:12 +01:00
|
|
|
if (is_numeric($used)) {
|
2016-08-28 12:32:58 -05:00
|
|
|
discover_mempool($valid_mempool, $device, 0, "nos", "Memory", "1", null, null);
|
2015-12-08 16:24:12 +01:00
|
|
|
}
|
|
|
|
|
}
|