|
|
<?php
use Monolog\Handler\AmqpHandler; use PhpAmqpLib\Channel\AMQPChannel; use App\HiLib\Logger\CreateCustomLogger; use PhpAmqpLib\Connection\AMQPStreamConnection;
return [
'default' => env('LOG_CHANNEL', 'stack'),
'channels' => [ 'hi' => [ 'driver' => 'custom', 'via' => CreateCustomLogger::class, 'handler' => AmqpHandler::class, 'with' => [ 'exchange' => new AMQPChannel( new AMQPStreamConnection("liwo_rabbitmq_1", 5672, 'root', 'root') ), 'exchangeName' => 'log_exchange' ], ],
'stack' => [ 'driver' => 'stack', 'channels' => ['hi', 'daily',], 'ignore_exceptions' => false, ],
'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug', ],
'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug', 'days' => 14, ],
'gelf' => [ 'driver' => 'custom',
'via' => \Hedii\LaravelGelfLogger\GelfLoggerFactory::class,
// This optional option determines the processors that should be
// pushed to the handler. This option is useful to modify a field
// in the log context (see NullStringProcessor), or to add extra
// data. Each processor must be a callable or an object with an
// __invoke method: see monolog documentation about processors.
// Default is an empty array.
'processors' => [ \Hedii\LaravelGelfLogger\Processors\NullStringProcessor::class, // another processor...
],
// This optional option determines the minimum "level" a message
// must be in order to be logged by the channel. Default is 'debug'
'level' => 'debug',
// This optional option determines the channel name sent with the
// message in the 'facility' field. Default is equal to app.env
// configuration value
'name' => 'my-custom-name',
// This optional option determines the system name sent with the
// message in the 'source' field. When forgotten or set to null,
// the current hostname is used.
'system_name' => null,
// This optional option determines if you want the UDP, TCP or HTTP
// transport for the gelf log messages. Default is UDP
'transport' => 'udp',
// This optional option determines the host that will receive the
// gelf log messages. Default is 127.0.0.1
'host' => 'graylog',
// This optional option determines the port on which the gelf
// receiver host is listening. Default is 12201
'port' => 12201,
// This optional option determines the path used for the HTTP
// transport. When forgotten or set to null, default path '/gelf'
// is used.
'path' => null,
// This optional option determines the maximum length per message
// field. When forgotten or set to null, the default value of
// \Monolog\Formatter\GelfMessageFormatter::DEFAULT_MAX_LENGTH is
// used (currently this value is 32766)
'max_length' => null,
// This optional option determines the prefix for 'context' fields
// from the Monolog record. Default is null (no context prefix)
'context_prefix' => null,
// This optional option determines the prefix for 'extra' fields
// from the Monolog record. Default is null (no extra prefix)
'extra_prefix' => null, ], ], ];
|