mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@108 61d68cd4-352d-0410-923a-c4978735b2b8
19 lines
316 B
PHP
19 lines
316 B
PHP
<meta http-equiv="refresh" content="60">
|
|
<?
|
|
|
|
$sql = "select * from syslog ORDER BY datetime DESC LIMIT 1000";
|
|
|
|
$query = mysql_query($sql);
|
|
|
|
echo("<table cellspacing=0 cellpadding=2 width=100%>");
|
|
|
|
while($entry = mysql_fetch_array($query))
|
|
{
|
|
include("includes/print-syslog.inc");
|
|
}
|
|
|
|
echo("</table>");
|
|
|
|
?>
|
|
</table>
|