Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2009-09-07 11:07:59 +00:00
<?php
2017-12-29 07:36:49 +02:00
/*
* 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
2021-02-09 00:29:04 +01:00
* @link https://www.librenms.org
2017-12-29 07:36:49 +02:00
* @copyright 2017 LibreNMS
* @author LibreNMS Contributors
*/
2007-04-03 14:10:23 +00:00
2019-01-10 00:52:00 -06:00
$hostname = gethostbyid($entry['device_id']);
2007-04-03 14:10:23 +00:00
2011-03-17 11:46:02 +00:00
unset($icon);
2007-04-03 14:10:23 +00:00
2017-12-29 07:36:49 +02:00
$severity_colour = eventlog_severity($entry['severity']);
$icon = '<span class="alert-status ' . $severity_colour . '"></span>';
2007-04-03 14:10:23 +00:00
2017-12-29 07:36:49 +02:00
echo '<tr>';
echo '<td>' . $icon . '</td>';
echo '<td style="vertical-align: middle;">' . $entry['datetime'] . '</td>';
if (! isset($vars['device'])) {
2019-01-10 00:52:00 -06:00
$dev = device_by_id_cache($entry['device_id']);
2017-12-29 07:36:49 +02:00
echo '<td style="vertical-align: middle;">' . generate_device_link($dev, shorthost($dev['hostname'])) . '</td>';
2011-03-17 11:46:02 +00:00
}
2007-04-03 14:10:23 +00:00
2011-03-17 11:46:02 +00:00
if ($entry['type'] == 'interface') {
$this_if = cleanPort(getifbyid($entry['reference']));
$entry['link'] = '<b>' . generate_port_link($this_if, makeshortif(strtolower($this_if['label']))) . '</b>';
2016-08-18 20:28:22 -05:00
} else {
2011-03-17 11:46:02 +00:00
$entry['link'] = 'System';
}
2007-04-03 14:10:23 +00:00
2017-12-29 07:36:49 +02:00
echo '<td style="vertical-align: middle;">' . $entry['link'] . '</td>';
2007-04-03 14:10:23 +00:00
2017-12-29 07:36:49 +02:00
echo '<td style="vertical-align: middle;">' . htmlspecialchars($entry['message']) . '</td>';
echo '</tr>';