chameleon/laravel-gelf
Laravel Gelf
2,619
2
| Install | |
|---|---|
composer require chameleon/laravel-gelf |
|
| Latest Version: | 0.3.2 |
| PHP: | >=7.1.0 |
| Last Updated: | May 25, 2022 |
| Links: | GitHub · Packagist |
Maintainer: thehasanov
Laravel Gelf driver
laravel-gelf graylog2/gelf-php implementation for laravel framework 5.7+
Installation
composer install
$ composer require chameleon/laravel-gelf
Config
config/logging.php
'graylog' => [
'driver' => 'laravel-gelf',
'level' => 'debug',
'facility' => 'laravel',
//'formatter' => \Monolog\Formatter\GelfMessageFormatter::class,
'connection' => [
'type' => 'udp', // or tcp
'host' => '127.0.0.1'
'port' => 12201
],
//additional fields
'additional' => [
'from_php' => true
]
],
Related Packages
hedii/laravel-gelf-logger
A Laravel package to send logs to a gelf compatible backend like graylog
3,828,758
135