LaravelPackages.net
Acme Inc.
Toggle sidebar
defstudio/laravel-clog-detector

A slow response time detector for Laravel

6.247
0
v1.0.0
About defstudio/laravel-clog-detector

defstudio/laravel-clog-detector is a Laravel package for a slow response time detector for laravel. It currently has 0 GitHub stars and 6.247 downloads on Packagist (latest version v1.0.0). Install it with composer require defstudio/laravel-clog-detector. Discover more Laravel packages by defstudio or browse all Laravel packages to compare alternatives.

Last updated

Laravel Clog Detector

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads License

A slow responses detector for Laravel.

Installation

You can install the package via composer:

composer require defstudio/laravel-clog-detector

You can publish the config file with:

php artisan vendor:publish --tag="laravel-clog-detector-config"

This is the contents of the published config file:

return [
    'slow_responses' => [
        /*
         * Enables slow responses reporting
         */
        'report' => env('SLOW_RESPONSES_REPORT', false),

        /*
         * Max http request handling time expressed in seconds.
         */
        'threshold' => env('SLOW_RESPONSES_MAX_SECS', 5),

        /*
         * Route names that will not report a long execution time.
         */
        'ignored_routes' => [
        ],

        /*
         * Urls that will not report a long execution time.
         */
        'ignored_urls' => [
        ],

        /*
         * The middleware to be used to check response times.
         * it must implement DefStudio\ClogDetector\Contracts\MeasureHttpResponseTime
         */
        'middleware' => MeasureHttpResponseTime::class,
    ],
];

Usage

[TODO]

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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

Comments