etsvthor/telegram-failed-job-monitor
Composer 安装命令:
composer require etsvthor/telegram-failed-job-monitor
包简介
Failed job monitor which sends Telegram notifications on job failure
README 文档
README
Extension to spatie/laravel-failed-job-monitor to add support for Telegram notifications and add a rate-limiter to not get spammed in case certain jobs run regularly.
See spatie/laravel-failed-job-monitor and laravel-notification-channels/telegram for more information.
Installation
You can install the package via composer:
composer require etsvthor/telegram-failed-job-monitor
You must publish the config file:
php artisan vendor:publish --tag=telegram-failed-job-monitor
This is the contents of the published config file. This overwrites the config of spatie/laravel-failed-job-monitor. By default, the notificationFilter is used to create the rate-limit:
return [ /* * The notification that will be sent when a job fails. */ 'notification' => EtsvThor\TelegramFailedJobMonitor\Notification::class, /* * The notifiable to which the notification will be sent. The default * notifiable will use the mail and slack configuration specified * in this config file. */ 'notifiable' => EtsvThor\TelegramFailedJobMonitor\Notifiable::class, /* * By default notifications are sent for all failures. You can pass a callable to filter * out certain notifications. The given callable will receive the notification. If the callable * return false, the notification will not be sent. */ 'notificationFilter' => [EtsvThor\TelegramFailedJobMonitor\Notification::class, 'notificationFilter'], /* * The channels to which the notification will be sent. */ 'channels' => ['telegram'], /** * How many seconds each failed job will trigger a notification. By default, it does not rate-limit. */ 'default-rate-limit' => env('FAILED_JOB_DEFAULT_RATELIMIT'), /** * How many seconds at minimum between notifications for this job. If nothing is specified, the default-rate-limit * will be used. */ 'rate-limit' => [ // App\Jobs\MyJob:class => '3600', ], 'mail' => [ 'to' => ['email@example.com'], ], 'slack' => [ 'webhook_url' => env('FAILED_JOB_SLACK_WEBHOOK_URL'), ], ];
Telegram bot
Talk to @BotFather and generate a Bot API Token.
Then add your newly created bot to the Telegram chat where you want notifications to be send.
Get your chat_id by running curl https://api.telegram.org/bot<your_token>/getUpdates and retrieving the chat_id
from the output.
Then, configure your Telegram Bot API Token:
# config/services.php 'telegram-bot-api' => [ 'token' => env('TELEGRAM_BOT_TOKEN'), 'chat_id' => env('TELEGRAM_CHAT_ID'), ],
License
The MIT License (MIT). Please see License File for more information.
etsvthor/telegram-failed-job-monitor 适用场景与选型建议
etsvthor/telegram-failed-job-monitor 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.9k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 01 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「etsvThor」 「telegram-failed-job-monitor」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 etsvthor/telegram-failed-job-monitor 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 etsvthor/telegram-failed-job-monitor 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 etsvthor/telegram-failed-job-monitor 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Connect a laravel application with the Thor cash register
Alfabank REST API integration
Laravel package for Accurate Online API integration.
Shared RCX Laravel DataTables UI and configuration helpers.
Boot a Laravel project on any machine with one command: app:serve installs missing tools (PHP, Node, Composer, Herd, Docker), creates .env, sets up the database, runs migrations, builds assets, starts a queue worker and serves via Herd, Sail or artisan serve; app:down cleanly stops everything it sta
Branded, diagnostic error pages (500, 403, 404, 419, 503) for Filament — native Filament UI, dark mode and translations out of the box.
统计信息
- 总下载量: 1.9k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-01-08