mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added Syslog, Eventlog and Globe Map widgets
This commit is contained in:
29
html/includes/common/syslog.inc.php
Normal file
29
html/includes/common/syslog.inc.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
$sql = "SELECT *, DATE_FORMAT(timestamp, '".$config['dateformat']['mysql']['compact']."') AS date from syslog ORDER BY timestamp DESC LIMIT 20";
|
||||
$query = mysql_query($sql);
|
||||
|
||||
$syslog_output = '
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="panel panel-default panel-condensed">
|
||||
<div class="panel-heading">
|
||||
<strong>Syslog entries</strong>
|
||||
</div>
|
||||
<table class="table table-hover table-condensed table-striped">';
|
||||
|
||||
foreach (dbFetchRows($sql) as $entry) {
|
||||
$entry = array_merge($entry, device_by_id_cache($entry['device_id']));
|
||||
include 'includes/print-syslog.inc.php';
|
||||
}
|
||||
|
||||
$syslog_output .= '
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
|
||||
$common_output[] = $syslog_output;
|
Reference in New Issue
Block a user