Files
librenms-librenms/includes/html/graphs/device/processor.inc.php
T
2019-04-12 20:47:13 -05:00

10 lines
321 B
PHP

<?php
$procs = dbFetchRows('SELECT * FROM `processors` where `device_id` = ?', array($device['device_id']));
if ($config['os'][$device['os']]['processor_stacked'] == 1) {
include 'includes/html/graphs/device/processor_stack.inc.php';
} else {
include 'includes/html/graphs/device/processor_separate.inc.php';
}