Files
librenms-librenms/app/Http/Controllers/Widgets/AlertsController.php
Tony Murray c5b63bde86 New Blade Components: x-device-link, x-port-link, x-graph-row, x-popup (#13197)
* working popover

* popup component

* cleanup

* finalize device-link component

* attributes WIP

* working graph component

* widgets WIP

* More dynamic configs

* Graph row component

* Build CSS so we can use a dark theme

* graph row set columns

* only one popup visible at a time.

* Just set graph row width statically

* responsive WIP

* rsponsive option for graph-row "working"

* remove @deviceLink and @portLink

* fix non-responsive graph row

* update js/css

* fix style

* bad type?

* types

* types

* types #3

* remove testing code

* full rebel, no closing tags for meta and link

* match previous formatting

* fix vlans display

* restore newline

* remove silly comment

* remove unused line

* style I guess
2021-09-10 08:07:08 -05:00

75 lines
2.1 KiB
PHP

<?php
/**
* AlertsController.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
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
* @copyright 2018 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace App\Http\Controllers\Widgets;
use Illuminate\Http\Request;
class AlertsController extends WidgetController
{
protected $title = 'Alerts';
protected $defaults = [
'title' => null,
'device' => null,
'acknowledged' => null,
'fired' => null,
'min_severity' => null,
'state' => null,
'device_group' => null,
'proc' => 0,
'location' => 1,
'sort' => 1,
'hidenavigation' => 0,
];
public function getView(Request $request)
{
return view('widgets.alerts', $this->getSettings());
}
public function getSettingsView(Request $request)
{
$data = $this->getSettings(true);
$data['severities'] = [
// alert_rules.status is enum('ok','warning','critical')
'ok' => 1,
'warning' => 2,
'critical' => 3,
'ok only' => 4,
'warning only' => 5,
'critical only' => 6,
];
$data['states'] = [
// divined from librenms/alerts.php
'recovered' => '0',
'alerted' => '1',
'acknowledged' => '2',
'worse' => '3',
'better' => '4',
];
return view('widgets.settings.alerts', $data);
}
}