Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

86 lines
2.8 KiB
PHP
Raw Permalink Normal View History

<?php
/* Copyright (C) 2015 Daniel Preussker <[email protected]>
* 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/>. */
/**
* VictorOps Generic-API Transport - Based on PagerDuty transport
2021-09-10 20:09:53 +02:00
*
* @author f0o <[email protected]>
* @author laf <[email protected]>
* @copyright 2015 f0o, laf, LibreNMS
* @license GPL
*/
2020-09-21 14:54:51 +02: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;
use LibreNMS\Exceptions\AlertTransportDeliveryException;
use LibreNMS\Util\Http;
2018-07-21 13:34:59 -06:00
class Victorops extends Transport
{
protected string $name = 'Splunk On-Call';
2021-10-06 07:29:47 -05:00
public function deliverAlert(array $alert_data): bool
2018-07-21 13:34:59 -06:00
{
$url = $this->config['victorops-url'];
$protocol = [
'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'],
'monitoring_tool' => 'librenms',
];
$protocol['message_type'] = match ($alert_data['state']) {
AlertState::RECOVERED => 'RECOVERY',
AlertState::ACKNOWLEDGED => 'ACKNOWLEDGEMENT',
default => match ($alert_data['severity']) {
'ok' => 'INFO',
'warning' => 'WARNING',
default => 'CRITICAL',
},
};
foreach ($alert_data['faults'] as $fault => $data) {
$protocol['state_message'] .= $data['string'];
}
$res = Http::client()->post($url, $protocol);
2020-09-21 14:54:51 +02:00
if ($res->successful()) {
return true;
}
2020-09-21 14:54:51 +02:00
throw new AlertTransportDeliveryException($alert_data, $res->status(), $res->body(), $alert_data['msg'], $protocol);
}
2018-07-21 13:34:59 -06: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',
],
];
}
}