laravel-notification-channels/pagerduty 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

laravel-notification-channels/pagerduty

最新稳定版本:1.1.0

Composer 安装命令:

composer require laravel-notification-channels/pagerduty

包简介

A Laravel notification channel for sending PagerDuty events.

README 文档

README

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 11.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 lwaite@gmail.com 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.

统计信息

  • 总下载量: 27.04k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 4
  • Forks: 12
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-05-12