Files

14 lines
536 B
PHP
Raw Permalink Normal View History

<?php
2019-06-23 00:29:12 -05:00
$entries = dbFetchRows("SELECT *,DATE_FORMAT(datetime, '" . \LibreNMS\Config::get('dateformat.mysql.compact') . "') as humandate FROM `eventlog` WHERE `device_id` = ? AND `type` = 'interface' AND `reference` = '" . $port['port_id'] . "' ORDER BY `datetime` DESC LIMIT 0,250", [$device['device_id']]);
2015-09-21 01:30:23 +05:30
echo '<table class="table table-condensed">';
echo '<th>Timestamp</th><th>Port</th><th>Event</th>';
2015-07-13 20:10:26 +02:00
foreach ($entries as $entry) {
2019-04-11 23:26:42 -05:00
include 'includes/html/print-event.inc.php';
}
2015-07-13 20:10:26 +02:00
echo '</table>';
2015-07-13 20:10:26 +02:00
$pagetitle[] = 'Events';