mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* New event log severity model * Revert "New event log severity model" This reverts commit 0783527af8ca492a562cc9a60e3887c24599000d. * New event log severity model * Fixed spaces vs tabs * Learning the format requirements * Learning the format requirements * Moved the colours in to the stylesheet * change SQL file to stop conflicting * refactor log_event so severity isn't last, but reference is. * keep having to move the file due to new PR conflicts * Revert "keep having to move the file due to new PR conflicts" This reverts commit f3030e7218f3403664616fde655e4d35c134516a. * extended support to dashboard and eventlog page * formatting
33 lines
798 B
PHP
33 lines
798 B
PHP
<?php
|
|
|
|
$hostname = gethostbyid($entry['host']);
|
|
|
|
unset($icon);
|
|
$severity_colour = eventlog_severity($entry['severity']);
|
|
|
|
$icon = "<i class='fa fa-bookmark fa-lg $severity_colour' aria-hidden='true'></i>";
|
|
|
|
echo '<tr>
|
|
<td>'.$icon.'
|
|
'.$entry['datetime'].'
|
|
</td>';
|
|
|
|
if (!isset($vars['device'])) {
|
|
$dev = device_by_id_cache($entry['host']);
|
|
echo '<td>
|
|
'.generate_device_link($dev, shorthost($dev['hostname'])).'
|
|
</td>';
|
|
}
|
|
|
|
if ($entry['type'] == 'interface') {
|
|
$this_if = ifLabel(getifbyid($entry['reference']));
|
|
$entry['link'] = '<b>'.generate_port_link($this_if, makeshortif(strtolower($this_if['label']))).'</b>';
|
|
} else {
|
|
$entry['link'] = 'System';
|
|
}
|
|
|
|
echo '<td>'.$entry['link'].'</td>';
|
|
|
|
echo '<td>'.htmlspecialchars($entry['message']).'</td>
|
|
</tr>';
|