mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
10 lines
236 B
PHP
10 lines
236 B
PHP
<?php
|
|
echo 'Viprinet CPU Usage';
|
|
|
|
if ($device['os'] == 'viprinux') {
|
|
$usage = str_replace('"',"", snmp_get($device, 'VIPRINET-MIB::vpnRouterCPULoad.0', '-OvQ'));
|
|
if (is_numeric($usage)) {
|
|
$proc = ($usage * 100);
|
|
}
|
|
}
|