Commit version 24.12.13800
This commit is contained in:
@ -4,10 +4,10 @@
|
||||
* Observium Network Management and Monitoring System
|
||||
* Copyright (C) 2006-2015, Adam Armstrong - http://www.observium.org
|
||||
*
|
||||
* @package observium
|
||||
* @subpackage webui
|
||||
* @author Adam Armstrong <adama@observium.org>
|
||||
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
|
||||
* @package observium
|
||||
* @subpackage webui
|
||||
* @author Adam Armstrong <adama@observium.org>
|
||||
* @copyright (C) Adam Armstrong
|
||||
*
|
||||
*/
|
||||
|
||||
@ -15,57 +15,64 @@ $overview = 1;
|
||||
|
||||
?>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
|
||||
<?php
|
||||
/* Begin Left Pane */
|
||||
<?php
|
||||
/* Begin Left Pane */
|
||||
|
||||
include("overview/information.inc.php");
|
||||
include("overview/information.inc.php");
|
||||
|
||||
include("overview/ports.inc.php");
|
||||
include("overview/ports.inc.php");
|
||||
|
||||
include("overview/services.inc.php");
|
||||
include("overview/services.inc.php");
|
||||
|
||||
include("overview/alertlog.inc.php");
|
||||
include("overview/alertlog.inc.php");
|
||||
|
||||
include("overview/syslog.inc.php");
|
||||
include("overview/syslog.inc.php");
|
||||
|
||||
include("overview/events.inc.php");
|
||||
include("overview/events.inc.php");
|
||||
|
||||
echo("</div>");
|
||||
/* End Left Pane */
|
||||
echo("</div>");
|
||||
/* End Left Pane */
|
||||
|
||||
/* Begin Right Pane */
|
||||
echo('<div class="col-md-6">');
|
||||
/* Begin Right Pane */
|
||||
echo('<div class="col-md-6">');
|
||||
|
||||
include("overview/processors.inc.php");
|
||||
include("overview/processors.inc.php");
|
||||
|
||||
if (is_array($device_state['ucd_mem']))
|
||||
{
|
||||
include("overview/ucd_mem.inc.php");
|
||||
} else {
|
||||
include("overview/mempools.inc.php");
|
||||
}
|
||||
if (is_array($device_state['ucd_mem'])) {
|
||||
include("overview/ucd_mem.inc.php");
|
||||
} else {
|
||||
include("overview/mempools.inc.php");
|
||||
}
|
||||
|
||||
include("overview/storage.inc.php");
|
||||
include("overview/storage.inc.php");
|
||||
|
||||
if (is_array($entity_state['group']['c6kxbar']))
|
||||
{
|
||||
include("overview/c6kxbar.inc.php");
|
||||
}
|
||||
if (is_array($entity_state['group']['c6kxbar'])) {
|
||||
include("overview/c6kxbar.inc.php");
|
||||
}
|
||||
|
||||
include("overview/printersupplies.inc.php");
|
||||
include("overview/status.inc.php");
|
||||
include("overview/counter.inc.php");
|
||||
include("overview/sensors.inc.php");
|
||||
include("overview/printersupplies.inc.php");
|
||||
|
||||
/* End Right Pane */
|
||||
if ($device['type'] == "environment" or $device['type'] == "power") {
|
||||
// Print status last for power & environmental
|
||||
include("overview/sensors.inc.php");
|
||||
include("overview/counter.inc.php");
|
||||
include("overview/status.inc.php");
|
||||
} else {
|
||||
// Else print status & counter first
|
||||
include("overview/status.inc.php");
|
||||
include("overview/counter.inc.php");
|
||||
include("overview/sensors.inc.php");
|
||||
}
|
||||
|
||||
?>
|
||||
/* End Right Pane */
|
||||
|
||||
</div>
|
||||
</div>
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
||||
|
Reference in New Issue
Block a user