laravel-notification-channels/pagerduty

A Laravel notification channel for sending PagerDuty events.

Downloads

25912

Stars

5

Version

0.4.0

PagerDuty Event notifications channel for Laravel

Latest Version on Packagist Software License Build Status StyleCI SensioLabsInsight Quality Score Code Coverage Total Downloads

This package makes it easy to send notification events to PagerDuty with Laravel 5.5+, 6.x and 7.x

Contents

Installation

You can install the package via composer:

composer require laravel-notification-channels/pagerduty

Usage

Now you can use the channel in your via() method inside the Notification class.

use NotificationChannels\PagerDuty\PagerDutyChannel;
use NotificationChannels\PagerDuty\PagerDutyMessage;
use Illuminate\Notifications\Notification;

class SiteProblem extends Notification
{
    public function via($notifiable)
    {
        return [PagerDutyChannel::class];
    }

    public function toPagerDuty($notifiable)
    {
        return PagerDutyMessage::create()
            ->setSummary('There was an error with your site in the {$notifiable->service} component.');
    }
}

In order to let your Notification know which Integration should receive the event, add the routeNotificationForPagerDuty method to your Notifiable model.

This method needs to return the Integration Key for the service and integration to which you want to send the event.

public function routeNotificationForPagerDuty()
{
    return '99dc10c97a6e43c387bbc4f877c794ef';
}

PagerDuty Setup

On a PagerDuty Service of your choice, create a new Integration using the Events API v2.

Creating a new integration

The Integration Key listed for your new integration is what you need to set in the routeNotificationForPagerDuty() method.

List of Integrations with Keys

Available Message methods

  • resolve(): Sets the event type to resolve to resolve issues.
  • setDedupKey(''): Sets the dedup_key (required when resolving).
  • setSummary(''): Sets a summary message on the event.
  • setSource(''): Sets the event source; defaults to the hostname.
  • setSeverity(''): Sets the event severity; defaults to critical.
  • setTimestamp(''): Sets the timestamp of the event.
  • setComponent(''): Sets the component of the event.
  • setGroup(''): Sets the group of the event.
  • setClass(''): Sets the class.
  • addCustomDetail('', ''): Adds a key/value pair to the custom_detail of the event.

See the PagerDuty v2 Events API documentation for more information about what these options will do.

Usage

Notification::route('PagerDuty', '[my integration key]')->notify(new BasicNotification);

When using Notification::route be sure to reference 'PagerDuty' as the Channel.

Changelog

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

laravel-notification-channels

Author

laravel-notification-channels