rafaellaurindo/laravel-telegram-logging 问题修复 & 功能扩展

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

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

rafaellaurindo/laravel-telegram-logging

Composer 安装命令:

composer require rafaellaurindo/laravel-telegram-logging

包简介

Send Laravel logs to a Telegram chat via Telegram Bot.

README 文档

README

Send Laravel logs to a Telegram chat via Telegram Bot.

Total Downloads Donate license

Installation

To install the package you can use Composer.

composer require rafaellaurindo/laravel-telegram-logging

Publish the package configuration file using the following artisan command:

php artisan vendor:publish --provider "RLaurindo\TelegramLogger\TelegramLoggerServiceProvider"

To send messages to your Telegram Chat, you first need a Telegram Bot. If you don't have one, see in this Telegram Instructions how to create one.

Set your Bot Token and chat_id (user, channel or group that will receive log messages) and set as environment variable.

Add in your .env, the follows variables:

TELEGRAM_BOT_TOKEN=bot_token
TELEGRAM_CHAT_ID=chat_id

Usage

Add the new Log Channel in config/logging.php:

'telegram' => [
    'driver' => 'custom',
    'via'    => RLaurindo\TelegramLogger\TelegramLogger::class,
    'level'  => 'debug',
]

If you use the stack channel as default logger, you can just the telegram channel to your stack:

'stack' => [
    'driver' => 'stack',
    'channels' => ['single', 'telegram'],
]

Or you can simply change the default logging channel in the .env file.

LOG_CHANNEL=telegram

Great! Your Laravel project can now send logs to your Telegram chat.

You can use Laravel Log Facade to send logs to your chat:

// Use the Laravel Log Facade
use Illuminate\Support\Facades\Log;
...

// All Laravel log leves are avaiable
Log::channel('telegram')->emergency($message);
Log::channel('telegram')->alert($message);
Log::channel('telegram')->critical($message);
Log::channel('telegram')->error($message);
Log::channel('telegram')->warning($message);
Log::channel('telegram')->notice($message);
Log::channel('telegram')->info($message);
Log::channel('telegram')->debug($message);

Telegram Instructions

To use this package, you need to create a Telegram bot to send messages to your chat.

If you need help, check out these Telegram Instructions that I created for you.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Donations are welcome

If this project help you reduce time to develop, you can give me a cup of coffee :)

Donate with Paypal:

paypal

License

MIT

rafaellaurindo/laravel-telegram-logging 适用场景与选型建议

rafaellaurindo/laravel-telegram-logging 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 27.05k 次下载、GitHub Stars 达 34, 最近一次更新时间为 2019 年 10 月 02 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 rafaellaurindo/laravel-telegram-logging 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 rafaellaurindo/laravel-telegram-logging 我们能提供哪些服务?
定制开发 / 二次开发

基于 rafaellaurindo/laravel-telegram-logging 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

  • Stars: 34
  • Watchers: 3
  • Forks: 15
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-10-02