rixafy/monolog-discord-tracy-handler

Monolog discord handler for Nette Framework with log file attachments

v1.0.2 2021-08-28 22:08 UTC

This package is auto-updated.

Last update: 2024-03-29 04:45:47 UTC


README

📝 Extended library lefuturiste/monolog-discord-handler with support of sending generated log files from Tracy (Nette Framework logging library) as an attachments to Discord channel

Requirements

  • PHP >= 7.4
  • Monolog >= 1.3
  • Tracy >= 2.4

Installation

composer require rixafy/monolog-discord-tracy-handler

Usage

Check out usage from original library and replace DiscordHandler\DiscordHandler with Rixafy\DiscordTracy\DiscordTracyHandler

How it works

If handler detects exception, error or info log, it will search log directory for newest *.html file, and if the file is not older than 5 seconds, handler will make a webhook request with attached file via curl library (it may change in the future to default guzzle http lib used in monolog)

Time check is because it's currently hard to tell if the last created html dump is correct one since tracy generates info/error/exception log only first time, and also if there was one error spamming every second, discord would be spammed with html files and probably would apply some api limits.

Example configuration using contributte/monolog

extensions:
    monolog: Contributte\Monolog\DI\MonologExtension

monolog:
    channel:
        default:
            handlers:
                - Rixafy\DiscordTracy\DiscordTracyHandler('webhook_url', 'Name', 'SubName', 'DEBUG')