2017-12-10 21:20:28 +01:00
|
|
|
<?php
|
|
|
|
/* Copyright (C) 2015 Daniel Preussker <f0o@devilcode.org>
|
|
|
|
* 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/>. */
|
2017-12-10 21:20:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* VictorOps Generic-API Transport - Based on PagerDuty transport
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2017-12-10 21:20:28 +01:00
|
|
|
* @author f0o <f0o@devilcode.org>
|
|
|
|
* @author laf <neil@librenms.org>
|
|
|
|
* @copyright 2015 f0o, laf, LibreNMS
|
|
|
|
* @license GPL
|
|
|
|
*/
|
2020-09-21 14:54:51 +02:00
|
|
|
|
2017-12-10 21:20:28 +01:00
|
|
|
namespace LibreNMS\Alert\Transport;
|
|
|
|
|
2018-07-21 13:34:59 -06:00
|
|
|
use LibreNMS\Alert\Transport;
|
2020-05-24 04:14:36 +02:00
|
|
|
use LibreNMS\Enum\AlertState;
|
2023-05-23 09:25:17 -05:00
|
|
|
use LibreNMS\Exceptions\AlertTransportDeliveryException;
|
|
|
|
use LibreNMS\Util\Http;
|
2017-12-10 21:20:28 +01:00
|
|
|
|
2018-07-21 13:34:59 -06:00
|
|
|
class Victorops extends Transport
|
2017-12-10 21:20:28 +01:00
|
|
|
{
|
2023-05-23 09:25:17 -05:00
|
|
|
protected string $name = 'Splunk On-Call';
|
2021-10-06 07:29:47 -05:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
public function deliverAlert(array $alert_data): bool
|
2018-07-21 13:34:59 -06:00
|
|
|
{
|
2023-05-23 09:25:17 -05:00
|
|
|
$url = $this->config['victorops-url'];
|
2017-12-10 21:20:28 +01:00
|
|
|
$protocol = [
|
2023-05-23 09:25:17 -05:00
|
|
|
'entity_id' => strval($alert_data['id'] ?: $alert_data['uid']),
|
|
|
|
'state_start_time' => strtotime($alert_data['timestamp']),
|
|
|
|
'entity_display_name' => $alert_data['title'],
|
|
|
|
'state_message' => $alert_data['msg'],
|
2017-12-10 21:20:28 +01:00
|
|
|
'monitoring_tool' => 'librenms',
|
|
|
|
];
|
2023-05-23 09:25:17 -05:00
|
|
|
$protocol['message_type'] = match ($alert_data['state']) {
|
|
|
|
AlertState::RECOVERED => 'RECOVERY',
|
|
|
|
AlertState::ACKNOWLEDGED => 'ACKNOWLEDGEMENT',
|
|
|
|
default => match ($alert_data['severity']) {
|
|
|
|
'ok' => 'INFO',
|
|
|
|
'warning' => 'WARNING',
|
|
|
|
default => 'CRITICAL',
|
|
|
|
},
|
|
|
|
};
|
2017-12-10 21:20:28 +01:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
foreach ($alert_data['faults'] as $fault => $data) {
|
2017-12-10 21:20:28 +01:00
|
|
|
$protocol['state_message'] .= $data['string'];
|
|
|
|
}
|
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
$res = Http::client()->post($url, $protocol);
|
2020-09-21 14:54:51 +02:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
if ($res->successful()) {
|
|
|
|
return true;
|
2017-12-10 21:20:28 +01:00
|
|
|
}
|
2020-09-21 14:54:51 +02:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
throw new AlertTransportDeliveryException($alert_data, $res->status(), $res->body(), $alert_data['msg'], $protocol);
|
2017-12-10 21:20:28 +01:00
|
|
|
}
|
2018-07-21 13:34:59 -06:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
public static function configTemplate(): array
|
2018-07-21 13:34:59 -06:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'config' => [
|
|
|
|
[
|
|
|
|
'title' => 'Post URL',
|
|
|
|
'name' => 'victorops-url',
|
|
|
|
'descr' => 'Victorops Post URL',
|
|
|
|
'type' => 'text',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'validation' => [
|
|
|
|
'victorops-url' => 'required|string',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2017-12-10 21:20:28 +01:00
|
|
|
}
|