2015-08-10 13:36:55 -07:00
|
|
|
<?php
|
2017-12-04 09:56:13 +02:00
|
|
|
/*
|
2017-12-24 21:59:16 +02:00
|
|
|
* LibreNMS
|
|
|
|
*
|
2017-12-04 09:56:13 +02:00
|
|
|
* 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
|
|
|
|
*/
|
2016-09-15 02:46:26 -05:00
|
|
|
$no_refresh = true;
|
2017-12-24 21:59:16 +02:00
|
|
|
$pagetitle[] = 'Graylog';
|
|
|
|
|
|
|
|
echo '<div class="panel panel-default panel-condensed">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<strong>Graylog entries</strong>
|
|
|
|
</div>';
|
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require_once 'includes/html/common/graylog.inc.php';
|
2016-08-18 20:28:22 -05:00
|
|
|
echo implode('', $common_output);
|
2017-12-24 21:59:16 +02:00
|
|
|
|
|
|
|
echo '</div>';
|