Code Monkey home page Code Monkey logo

laravel-telegram-logging's Introduction

Laravel Telegram Logging

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

laravel-telegram-logging's People

Contributors

dependabot[bot] avatar promasoud avatar rafaellaurindo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

laravel-telegram-logging's Issues

Laravel 9 Support

Would really appreciate an update to allow for Laravel 9 :)

Problem 1
    - Root composer.json requires rafaellaurindo/laravel-telegram-logging ^1.0 -> satisfiable by rafaellaurindo/laravel-telegram-logging[v1.0].
    - rafaellaurindo/laravel-telegram-logging v1.0 requires laravel/framework 7.*|8.* -> found laravel/framework[v7.0.0, ..., 7.x-dev, v8.0.0, ..., 8.x-dev] but it conflicts with your root composer.json require (^9.0).

Feature request: prevent to send duplicate errors

Problem:
When external services are down, I continuously receive messages about it, several messages per second.

Solution:
Make a setting for limiting the number of identical messages per unit of time.

Parse mode HTML messagge does not work

I write a telegram message with html elements that are supported by Telegram but on chat i read only text like "< b > Hello< / b >" (without space).
The version that I have installed is:
grkamil/laravel-telegram-logging v1.10.0 Send logs to Telegram chat via Telegram bot
I read the source code and I think that it does not work because you sent the param parse_mode on GET request instead of POST

Composer - Deprecation Notice

Class RLaurindo\TelegramLogger\TelegramService located in /vendor/rafaellaurindo/laravel-telegram-logging/src\Services\TelegramService.php does not c
omply with psr-4 autoloading standard. Skipping.

composer 2.0.8

Small typo in logger

Hey,

Thanks for the package. Much prefer your format compared to other Telegram packages.

There's a slight typo in the output:

Envioronment - Should be "Environment"

Thanks!

Composer - Deprecation Notice

Deprecation Notice: Class RLaurindo\TelegramLogger\TelegramService located in ./vendor/rafaellaurindo/laravel-telegram-logging/src/Services/TelegramService.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar:///usr/local/bin/composer/src/Composer/Autoload/ClassMapGenerator.php:201

Custom LOG Message

Hi bro, Is there a way to custom log message to telegram?
like in example i want to declare URL route which cause the error happen.

erro ao tentar instalar

Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Installation request for rafaellaurindo/laravel-telegram-logging dev-master -> satisfiable by rafaellaurindo/laravel-telegram-logging[dev-master].
    - Conclusion: remove monolog/monolog 1.24.0
    - Conclusion: don't install monolog/monolog 1.24.0
    - rafaellaurindo/laravel-telegram-logging dev-master requires monolog/monolog ^1.25 -> satisfiable by monolog/monolog[1.25.0, 1.25.1, 1.x-dev].
    - Can only install one of: monolog/monolog[1.25.0, 1.24.0].
    - Can only install one of: monolog/monolog[1.25.1, 1.24.0].
    - Can only install one of: monolog/monolog[1.x-dev, 1.24.0].
    - Installation request for monolog/monolog (locked at 1.24.0) -> satisfiable by monolog/monolog[1.24.0].


Installation failed, reverting ./composer.json to its original content.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.