Files
librenms-librenms/app/Http/Controllers/Widgets/AlertsController.php
SourceDoctor 4efb71e679 Show Alert Count on Widget (#12503)
* Show Alert Count on Widget

* update query
2021-02-11 19:28:59 -06:00

83 lines
2.3 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 App\Models\Alert;
use Illuminate\Http\Request;
use LibreNMS\Enum\AlertState;
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)
{
$alert_count = Alert::where('state', '!=', AlertState::RECOVERED)->count();
if ($alert_count) {
$this->title .= ' (' . $alert_count . ')';
}
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);
}
}