kevariable/laravel-slack-logging 问题修复 & 功能扩展

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

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

kevariable/laravel-slack-logging

最新稳定版本:v1.2.0

Composer 安装命令:

composer require kevariable/laravel-slack-logging

包简介

Report your Errors onto Slack

README 文档

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Laravel Slack Logging is a package that sends exception notifications directly to a Slack channel using webhooks. It includes request payload in notifications, deduplicates repeated exceptions with escalating sleep intervals, and lets you skip specific exception classes or environments.

Preview

image

Installation

You can install the package via Composer:

composer require kevariable/laravel-slack-logging

You can publish the config file with:

php artisan vendor:publish --tag="laravel-slack-logging-config"

Usage

Add the Slack webhook URL to your .env file:

SLACK_LOGGING_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK

Then add the Slack logging channel to your config/logging.php:

'channels' => [
    'stack' => [
        'driver' => 'stack',
        'channels' => ['single', 'slack'],
        ...
    ],

    'slack' => [
        'driver' => 'slack-logging',
        ...
    ],
],

Now any exception thrown in your application will be sent to Slack.

Configuration

The published config file (config/slack-logging.php) provides the following options:

Environments

Only send notifications in specified environments:

'environments' => [
    'production',
],

Except

Skip specific exception classes:

'except' => [
    Symfony\Component\HttpKernel\Exception\NotFoundHttpException::class,
],

Sleep (Deduplication)

Prevent duplicate exceptions from spamming your Slack channel. When the same exception is raised repeatedly, the sleep duration escalates through the configured steps:

'sleep' => [60, 120, 300],
Occurrence Action Next cooldown
1st Sent to Slack 60s
2nd (within 60s) Suppressed 120s
3rd (within 120s) Suppressed 300s
4th+ (within 300s) Suppressed 300s (capped)
After cooldown expires Sent again Resets to 60s

Set to an empty array to disable deduplication:

'sleep' => [],

Payload

Request parameters are automatically included in the Slack notification when available, making it easier to debug the exception context.

Testing

composer test

Testing in Your Application

Use the facade fake to assert exceptions in your tests:

use Kevariable\SlackLogging\Facades\SlackLogging;

SlackLogging::fake();

// trigger exception...

SlackLogging::assertRequestsSent(1);

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-26

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固