stormcode/seq-laravel-log
Laravel Seq Log Handler
This package provides a SeqHandler for the Monolog library and Laravel Framework. Seq is a log server that runs on a central machine.
Prerequisites
- PHP 8.0 or above.
Installation
Install the latest version with
$ composer require stormcode/seq-laravel-log
Laravel Usage
To config/logging.php add:
'seq' => [
'driver' => 'monolog',
'handler' => StormCode\SeqMonolog\Handler\SeqHandler::class,
'with' => [
'serverUri' => env('SEQ_URL'),
'apiKey' => env('SEQ_API_KEY', null),
'level' => Monolog\Logger::DEBUG,
'bubble' => true
],
'formatter' => StormCode\SeqMonolog\Formatter\SeqCompactJsonFormatter::class,
'formatter_with' => [
'batchMode' => 1, //1 OR 2
],
],
Then add this to your .env file:
LOG_CHANNEL=seq
SEQ_URL=http://localhost:5341/
SEQ_API_KEY=YOUR_API_KEY
Now you can freely use seq raporting. If you are using many apps in one seq I suggest to add Channel variable while defining API_KEY.
License
This project is licensed under the terms of the MIT license. See the LICENSE file for license rights and limitations.
Thanks
Many thanks to msschl, who created package msschl/monolog-seq-handler and msschl/monolog-http-handler, which this package is based on. This package is only merge of this two packages and upgrade to php ^8.2 with some changes that was needed to make it work.
Related Packages
Laravel package for sending configurable messages to Microsoft Teams via the inc...
Extended laravel debug exceptions display (more info) and monolog's html emails...
LERN (Laravel Exception Recorder and Notifier) is a Laravel 5 package that will...