Files
librenms-librenms/includes/html/graphs/device/processor.inc.php
T

10 lines
328 B
PHP
Raw Normal View History

2011-04-26 16:05:56 +00:00
<?php
2011-04-22 15:13:15 +00:00
2020-09-21 15:40:17 +02:00
$procs = dbFetchRows('SELECT * FROM `processors` where `device_id` = ?', [$device['device_id']]);
2011-04-22 15:13:15 +00:00
if (\LibreNMS\Config::getOsSetting($device['os'], 'processor_stacked')) {
2019-04-11 23:26:42 -05:00
include 'includes/html/graphs/device/processor_stack.inc.php';
2016-08-18 20:28:22 -05:00
} else {
2019-04-11 23:26:42 -05:00
include 'includes/html/graphs/device/processor_separate.inc.php';
2011-04-22 15:13:15 +00:00
}