mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
10 lines
328 B
PHP
10 lines
328 B
PHP
<?php
|
|
|
|
$procs = dbFetchRows('SELECT * FROM `processors` where `device_id` = ?', array($device['device_id']));
|
|
|
|
if (\LibreNMS\Config::get("os.{$device['os']}.processor_stacked")) {
|
|
include 'includes/html/graphs/device/processor_stack.inc.php';
|
|
} else {
|
|
include 'includes/html/graphs/device/processor_separate.inc.php';
|
|
}
|