stormcode/seq-laravel-log

stormcode/seq-laravel-log sends log records to a Seq-Server.
7,225 1
Install
composer require stormcode/seq-laravel-log
Latest Version:v1.6
PHP:^8.2
License:MIT
Last Updated:Dec 12, 2024
Links: GitHub  ·  Packagist
Maintainer: StormCode

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

kopitar/laravel-teams-logger

Laravel package for sending configurable messages to Microsoft Teams via the inc...

1,431 2
swayok/laravel-extended-errors

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

1,370 1
tylercd100/lern

LERN (Laravel Exception Recorder and Notifier) is a Laravel 5 package that will...

154,594 436
markhilton/monolog-mysql

Laravel 5 MySQL driver for Monolog

156,788 40
edujugon/laravel-log

Simple API to write logs for Laravel.

10,901 19