amazeeio / lagoon-logs
Zero config logging module for Laravel and Lagoon
Installs: 25 567
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 2
Open Issues: 1
Type:package
Requires
- monolog/monolog: ^2.0|^3.0
This package is auto-updated.
Last update: 2024-10-19 08:48:14 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.