ahmedofali/laravel-elk-log

Integrate laravel with elastic search for sending all logs to elastic search

Installs: 6 476

Dependents: 0

Suggesters: 0

Security: 0

Stars: 7

Watchers: 1

Forks: 4

Open Issues: 0

pkg:composer/ahmedofali/laravel-elk-log

2.0.0 2019-11-24 10:07 UTC

This package is not auto-updated.

Last update: 2025-10-07 16:43:12 UTC


README

This package is simple initializer of elasticsearch with laravel

Installation

You can install the package via composer:

composer require ahmedofali/laravel-elk-log

Usage

Run the below command to get installation tips.

php artisan elk:installTips

Merge this with logging.php config file

return [

    'channels' => [
        'elastic' => [
            'driver' => 'monolog',
            'handler' => ElasticsearchHandler::class,
            'level' => 'debug',
            'formatter' => ElasticsearchFormatter::class
        ],
    ],

];

After you publish config file you will find new config file called elk.php add your environment configuration and you are ready to go with elasticsearch.

Credits