2022-08-24 00:33:28 +02:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* SetGroups.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 2022 Tony Murray
|
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace App\Logging\Reporting\Middleware;
|
|
|
|
|
|
|
|
|
|
use LibreNMS\Util\Version;
|
2023-04-17 13:51:35 +02:00
|
|
|
use Spatie\FlareClient\Report;
|
2022-08-24 00:33:28 +02:00
|
|
|
|
2023-04-17 13:51:35 +02:00
|
|
|
class SetGroups implements \Spatie\FlareClient\FlareMiddleware\FlareMiddleware
|
2022-08-24 00:33:28 +02:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Middleware to set LibreNMS and Tools grouping data
|
|
|
|
|
*
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
2023-05-24 22:21:54 +02:00
|
|
|
public function handle(Report $report, \Closure $next)
|
2022-08-24 00:33:28 +02:00
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
$version = Version::get();
|
|
|
|
|
|
|
|
|
|
$report->group('LibreNMS', [
|
2022-10-02 00:41:56 -05:00
|
|
|
'Git version' => $version->name(),
|
2022-08-24 00:33:28 +02:00
|
|
|
'App version' => Version::VERSION,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$report->group('Tools', [
|
|
|
|
|
'Database' => $version->databaseServer(),
|
|
|
|
|
'Net-SNMP' => $version->netSnmp(),
|
|
|
|
|
'Python' => $version->python(),
|
|
|
|
|
'RRDtool' => $version->rrdtool(),
|
|
|
|
|
|
|
|
|
|
]);
|
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $next($report);
|
|
|
|
|
}
|
|
|
|
|
}
|