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

  1. Add webhook_url or title to channels in config/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

bow/log

Laravel5-Wrapper to monolog for use with monologs multichannel feature

52 0
kidshenlong/monolog-influxdb

A handler for Monolog that sends messages to InfluxDB

13 4
swayok/laravel-extended-errors

Extended laravel debug exceptions display (more info) and monolog's html emails...

1,370 1
hkar/monolog-bigquery-handler

A handler for Monolog that sends messages to Google BigQuery.

50 2
visualappeal/databaselogger

Laravel package to log messages into the database instead of a file.

665 2