amazeeio/lagoon-logs

Zero config logging module for Laravel and Lagoon

v0.0.5 2023-04-19 05:21 UTC

This package is auto-updated.

Last update: 2024-04-19 07:44:08 UTC


README

Monolog channel and formatter for Laravel logging into Lagoon.

Basic Usage

Installing this package makes the channel "LagoonLogs" available in your logging config.

You can install the package by simply running composer require amazeeio/lagoon-logs - the package should be installed and autodiscovered by Laravel.

It's important to note that this is essentially a wrapper around a Monolog Logger with a specifically set UDP SocketHandler and LogstashFormatter - therefore, it really only makes sense to use this when deployed to a Lagoon instance.

In a vanilla Laravel 6 installation, this is most easily done by setting the environment variable LOG_CHANNEL to LagoonLogs.

If you need more control over your logging stack, you can simply add LagoonLogs in the appropriate places (such as a stack) in your ./config/logging.php file. See the Laravel 6 docs for more on customizing logging.