mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
b63c2ac3bf
* various device page style fixes and alignments with new look * blank line fix
68 lines
2.3 KiB
PHP
68 lines
2.3 KiB
PHP
<?php
|
|
/*
|
|
* LibreNMS
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
* the source code distribution for details.
|
|
*
|
|
* @package LibreNMS
|
|
* @subpackage webui
|
|
* @link http://librenms.org
|
|
* @copyright 2017 LibreNMS
|
|
* @author LibreNMS Contributors
|
|
*/
|
|
|
|
$pagetitle[] = 'Events';
|
|
?>
|
|
|
|
<form method="post" action="">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<input type="text" name="string" placeholder="Search" class="form-control" id="string" value="<?php echo $_POST['string']; ?>" required/>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<select name="type" class="form-control" id="type">
|
|
<option value="">All Types</option>
|
|
<option value="system">System</option>
|
|
<?php
|
|
foreach (dbFetchRows('SELECT `type` FROM `eventlog` WHERE device_id = ? GROUP BY `type` ORDER BY `type`', array($device['device_id'])) as $data) {
|
|
echo "<option value='".$data['type']."'";
|
|
if ($data['type'] == $_POST['type']) {
|
|
echo 'selected';
|
|
}
|
|
|
|
echo '>'.$data['type'].'</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-4"><input class="btn btn-default" type="submit" value="Search"></div>
|
|
</div>
|
|
</form>
|
|
<br>
|
|
|
|
<?php
|
|
|
|
$sql = '';
|
|
if (!empty($_POST['string'])) {
|
|
$sql .= " AND message LIKE '%".mres($_POST['string'])."%'";
|
|
}
|
|
|
|
$entries = dbFetchRows("SELECT *,DATE_FORMAT(datetime, '".$config['dateformat']['mysql']['compact']."') as humandate FROM `eventlog` WHERE `host` = ? $sql ORDER BY `datetime` DESC LIMIT 0,250", array($device['device_id']));
|
|
|
|
echo ' <div class="panel panel-default panel-condensed">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-bookmark fa-lg icon-theme" aria-hidden="true"></i> <strong>Eventlog entries</strong>
|
|
</div>
|
|
<table class="table table-hover table-condensed table-striped">';
|
|
|
|
foreach ($entries as $entry) {
|
|
include 'includes/print-event.inc.php';
|
|
}
|
|
|
|
echo ' </table>
|
|
</div>';
|