2018-12-16 15:18:17 -06:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* GraylogController.php
|
|
|
|
*
|
|
|
|
* -Description-
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-02-09 00:29:04 +01:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-12-16 15:18:17 -06:00
|
|
|
*
|
2021-02-09 00:29:04 +01:00
|
|
|
* @link https://www.librenms.org
|
2018-12-16 15:18:17 -06:00
|
|
|
* @copyright 2018 Tony Murray
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Widgets;
|
|
|
|
|
|
|
|
use App\Models\Device;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\View\View;
|
|
|
|
|
|
|
|
class GraylogController extends WidgetController
|
|
|
|
{
|
|
|
|
protected $title = 'Graylog';
|
|
|
|
protected $defaults = [
|
|
|
|
'title' => null,
|
|
|
|
'stream' => null,
|
|
|
|
'device' => null,
|
|
|
|
'range' => null,
|
|
|
|
'limit' => 15,
|
2019-08-27 19:44:27 +02:00
|
|
|
'loglevel' => null,
|
2020-06-11 13:59:08 +02:00
|
|
|
'hidenavigation' => 0,
|
2018-12-16 15:18:17 -06:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Request $request
|
|
|
|
* @return View
|
|
|
|
*/
|
|
|
|
public function getView(Request $request)
|
|
|
|
{
|
|
|
|
return view('widgets.graylog', $this->getSettings());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSettingsView(Request $request)
|
|
|
|
{
|
2019-08-08 02:59:14 +02:00
|
|
|
$data = $this->getSettings(true);
|
2018-12-16 15:18:17 -06:00
|
|
|
|
|
|
|
if ($data['device']) {
|
|
|
|
$data['device'] = Device::find($data['device']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return view('widgets.settings.graylog', $data);
|
|
|
|
}
|
|
|
|
}
|