Guest User

Untitled

a guest
Dec 15th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. if ($device['os'] == "yamaha")
  4. {
  5. $percent = snmp_get($device, ".1.3.6.1.4.1.1182.2.1.4.0", "-OvQ");
  6.  
  7. if (is_numeric($percent))
  8. {
  9. $total = snmp_get($device, ".1.3.6.1.4.1.1182.2.1.2.0", "-OvQ");
  10. discover_mempool($valid['mempool'], $device, 0, $mib, "Memory Utilization", "1", $total, $total*$percent/100.0);
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment