librenms/html/includes/object-cache.inc.php

36 lines
1.0 KiB
PHP
Raw Normal View History

<?php
// FIXME queries such as the one below should probably go into index.php?
// FIXME: This appears to keep a complete cache of device details in memory for every page load.
// It would be interesting to know where this is used. It probably should have its own API.
use LibreNMS\ObjectCache;
2015-07-13 18:10:26 +00:00
foreach (dbFetchRows('SELECT * FROM `devices` ORDER BY `hostname`') as $device) {
$cache['devices']['hostname'][$device['hostname']] = $device['device_id'];
$cache['devices']['id'][$device['device_id']] = $device;
2015-07-13 18:10:26 +00:00
$cache['device_types'][$device['type']]++;
}
$devices = new ObjectCache('devices');
$ports = new ObjectCache('ports');
$services = new ObjectCache('services');
2015-07-13 18:10:26 +00:00
if ($devices['down']) {
$devices['bgcolour'] = '#ffcccc';
} else {
2015-07-13 18:10:26 +00:00
$devices['bgcolour'] = 'transparent';
}
2015-07-13 18:10:26 +00:00
if ($ports['down']) {
$ports['bgcolour'] = '#ffcccc';
} else {
2015-07-13 18:10:26 +00:00
$ports['bgcolour'] = '#e5e5e5';
}
if ($services['down']) {
$services['bgcolour'] = '#ffcccc';
} else {
2015-07-13 18:10:26 +00:00
$services['bgcolour'] = 'transparent';
}