All Projects → spatie → Laravel Http Logger

spatie / Laravel Http Logger

Licence: mit
Log HTTP requests in Laravel applications

Projects that are alternatives of or similar to Laravel Http Logger

Laravel Log Enhancer
Make debugging easier by adding more data to your laravel logs (Laravel 5.6+)
Stars: ✭ 311 (-23.59%)
Mutual labels:  laravel, logging
Laravel Log To Db
Custom Laravel and Lumen 5.6+ Log channel handler that can store log events to SQL or MongoDB databases. Uses Laravel/Monolog native logging functionality.
Stars: ✭ 76 (-81.33%)
Mutual labels:  laravel, logging
Clockwork Chrome
Clockwork - php dev tools integrated to your browser - Chrome extension
Stars: ✭ 415 (+1.97%)
Mutual labels:  laravel, logging
Laravel Auditing
Record the change log from models in Laravel
Stars: ✭ 2,210 (+443%)
Mutual labels:  laravel, logging
Log Fake
A drop in fake logger for testing with the Laravel framework.
Stars: ✭ 254 (-37.59%)
Mutual labels:  laravel, logging
Tracker
Laravel Stats Tracker
Stars: ✭ 2,638 (+548.16%)
Mutual labels:  laravel, logging
Array Redactor
A PHP package to redact array values by their keys.
Stars: ✭ 144 (-64.62%)
Mutual labels:  laravel, logging
Borgert Cms
Borgert is a CMS Open Source created with Laravel Framework 5.6
Stars: ✭ 298 (-26.78%)
Mutual labels:  laravel, logging
Clockwork
Clockwork - php dev tools in your browser - server-side component
Stars: ✭ 4,076 (+901.47%)
Mutual labels:  laravel, logging
Zhihu App
laravel-vue-zhihu ✨
Stars: ✭ 395 (-2.95%)
Mutual labels:  laravel
Meilisearch Laravel Scout
MeiliSearch integration for Laravel Scout
Stars: ✭ 394 (-3.19%)
Mutual labels:  laravel
Laravel Schedule Monitor
Monitor scheduled tasks in a Laravel app
Stars: ✭ 393 (-3.44%)
Mutual labels:  laravel
Pushnotification
PHP and Laravel Package to send push notifications to Android and IOS devices.
Stars: ✭ 395 (-2.95%)
Mutual labels:  laravel
Laravel Wallet
Easy work with virtual wallet
Stars: ✭ 401 (-1.47%)
Mutual labels:  laravel
Gommon
Common packages for Go
Stars: ✭ 389 (-4.42%)
Mutual labels:  logging
Laravel Chartjs
Simple package to facilitate and automate the use of charts in Laravel 5.x using Chartjs v2 library
Stars: ✭ 404 (-0.74%)
Mutual labels:  laravel
Laravel Ueditor
UEditor integration for Laravel.
Stars: ✭ 392 (-3.69%)
Mutual labels:  laravel
Closuretable
Adjacency List’ed Closure Table database design pattern implementation for the Laravel framework.
Stars: ✭ 391 (-3.93%)
Mutual labels:  laravel
Akaunting
Free and Online Accounting Software
Stars: ✭ 4,599 (+1029.98%)
Mutual labels:  laravel
Oc Shopaholic Plugin
🛍️ #1 e-commerce platform for October CMS
Stars: ✭ 404 (-0.74%)
Mutual labels:  laravel

Log HTTP requests

Latest Version on Packagist GitHub Workflow Status Total Downloads

This package adds a middleware which can log incoming requests to the default log. If anything goes wrong during a user's request, you'll still be able to access the original request data sent by that user.

This log acts as an extra safety net for critical user submissions, such as forms that generate leads.

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/laravel-http-logger

Optionally you can publish the configfile with:

php artisan vendor:publish --provider="Spatie\HttpLogger\HttpLoggerServiceProvider" --tag="config" 

This is the contents of the published config file:

return [

    /*
     * The log profile which determines whether a request should be logged.
     * It should implement `LogProfile`.
     */
    'log_profile' => \Spatie\HttpLogger\LogNonGetRequests::class,

    /*
     * The log writer used to write the request to a log.
     * It should implement `LogWriter`.
     */
    'log_writer' => \Spatie\HttpLogger\DefaultLogWriter::class,

    /*
     * Filter out body fields which will never be logged.
     */
    'except' => [
        'password',
        'password_confirmation',
    ],
];

Usage

This packages provides a middleware which can be added as a global middleware or as a single route.

// in `app/Http/Kernel.php`

protected $middleware = [
    // ...
    
    \Spatie\HttpLogger\Middlewares\HttpLogger::class
];
// in a routes file

Route::post('/submit-form', function () {
    //
})->middleware(\Spatie\HttpLogger\Middlewares\HttpLogger::class);

Logging

Two classes are used to handle the logging of incoming requests: a LogProfile class will determine whether the request should be logged, and LogWriter class will write the request to a log.

A default log implementation is added within this package. It will only log POST, PUT, PATCH, and DELETE requests and it will write to the default Laravel logger.

You're free to implement your own log profile and/or log writer classes, and configure it in config/http-logger.php.

A custom log profile must implement \Spatie\HttpLogger\LogProfile. This interface requires you to implement shouldLogRequest.

// Example implementation from `\Spatie\HttpLogger\LogNonGetRequests`

public function shouldLogRequest(Request $request): bool
{
   return in_array(strtolower($request->method()), ['post', 'put', 'patch', 'delete']);
}

A custom log writer must implement \Spatie\HttpLogger\LogWriter. This interface requires you to implement logRequest.

// Example implementation from `\Spatie\HttpLogger\DefaultLogWriter`

public function logRequest(Request $request): void
{
    $method = strtoupper($request->getMethod());
    
    $uri = $request->getPathInfo();
    
    $bodyAsJson = json_encode($request->except(config('http-logger.except')));

    $message = "{$method} {$uri} - {$bodyAsJson}";

    Log::info($message);
}

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].