posapp-vn/laravel-lark-logging
A Laravel package for logging to Lark bot
1,359
3
| Install | |
|---|---|
composer require posapp-vn/laravel-lark-logging |
|
| Latest Version: | v1.0.0 |
| PHP: | >=8.2 |
| License: | MIT |
| Last Updated: | Feb 4, 2025 |
| Links: | GitHub · Packagist |
Maintainer: posapp-developer
Laravel Lark logger
Send logs to Lark chat via Lark bot
Install
composer require posapp-vn/laravel-lark-logging
Define Lark Bot Webhook URL in your .env file
LARK_WEBHOOK_URL=https://open.feishu.cn/open-apis/bot/v2/hook/<your-hook-id-xxxxxx>
Add to config/logging.php file new channel:
'lark' => [
'driver' => 'custom',
'via' => PosAppVN\LarkLogger\LarkLogger::class,
'level' => 'debug',
'title' => env('APP_NAME', 'Laravel Log'), // optional - title of the message
'retries' => 3, // optional - retry sending message 3 times
]
Publish config file
php artisan vendor:publish --provider "PosAppVN\LarkLogger\LarkLoggerServiceProvider"
Create bot
For using this package you need to create Lark bot: https://open.larksuite.com/document/client-docs/bot-v3/add-custom-bot
Configuring a different chat id or token per channel
- Add
webhook_urlortitleto channels inconfig/logging.php.
[
'channels' => [
'lark-log' => [
'driver' => 'custom',
'via' => PosAppVN\LarkLogger\LarkLogger::class,
'level' => 'debug',
'webhook_url' => 'https://open.feishu.cn/open-apis/bot/v2/hook/<your-hook-id-xxxxxx>',
'title' => 'Laravel Log',
],
'lark-system' => [
'driver' => 'custom',
'via' => PosAppVN\LarkLogger\LarkLogger::class,
'level' => 'error',
'webhook_url' => 'https://open.feishu.cn/open-apis/bot/v2/hook/<your-hook-id-xxxxxx>',
'title' => 'System Log',
],
]
]
Related Packages
swayok/laravel-extended-errors
Extended laravel debug exceptions display (more info) and monolog's html emails...
1,370
1