PHPackages                             defstudio/laravel-clog-detector - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. defstudio/laravel-clog-detector

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

defstudio/laravel-clog-detector
===============================

A slow response time detector for Laravel

v1.0.0(3y ago)06.2k↓100%MITPHPPHP ^8.0CI failing

Since Sep 30Pushed 1y ago2 watchersCompare

[ Source](https://github.com/defstudio/laravel-clog-detector)[ Packagist](https://packagist.org/packages/defstudio/laravel-clog-detector)[ Docs](https://github.com/defstudio/laravel-clog-detector)[ RSS](/packages/defstudio-laravel-clog-detector/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (14)Versions (11)Used By (0)

Laravel Clog Detector
=====================

[](#laravel-clog-detector)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3591daac819455b547ad4e1c3b18a882f066d5c3e9390f35c02628520ec75798/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f64656673747564696f2f6c61726176656c2d636c6f672d6465746563746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/defstudio/laravel-clog-detector)[![GitHub Tests Action Status](https://camo.githubusercontent.com/deb661038eddc3df5b575707f9050b7509e6d9098b1d44db0039e49f79b4f2c9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6465662d73747564696f2f6c61726176656c2d636c6f672d6465746563746f722f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473)](https://github.com/def-studio/laravel-clog-detector/actions?query=workflow%3A%22Run+Tests%22+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/731460fed45040be55b8ffa46900702d10687dac4cc5261372b9d4e17e6ad822/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6465662d73747564696f2f6c61726176656c2d636c6f672d6465746563746f722f7374617469632e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65)](https://github.com/def-studio/laravel-clog-detector/actions?query=workflow%3A%22Static+Analysis%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/66bcfd850cd735dca39af2e53cd3e31d969fe5c761826913098add903e43997c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f64656673747564696f2f6c61726176656c2d636c6f672d6465746563746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/defstudio/laravel-clog-detector)[![License](https://camo.githubusercontent.com/3c0d9f7b2d5ddc4232e4f630528e8b4010a70697574b91935dd80b263187ce5b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f64656673747564696f2f6c61726176656c2d636c6f672d6465746563746f72)](https://packagist.org/packages/defstudio/laravel-clog-detector)

A slow responses detector for Laravel.

Installation
------------

[](#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
-----

[](#usage)

\[TODO\]

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](./CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Fabio Ivona](https://github.com/def-studio)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 94.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~56 days

Recently: every ~125 days

Total

10

Last Release

1182d ago

Major Versions

v0.2.0 → v1.0.02023-02-15

### Community

Maintainers

![](https://www.gravatar.com/avatar/db5e0ab5568062368a52c61d67381c1a35be5e5c816968dd3883bc7ba2d46b53?d=identicon)[fabio.ivona](/maintainers/fabio.ivona)

---

Top Contributors

[![fabio-ivona](https://avatars.githubusercontent.com/u/8792274?v=4)](https://github.com/fabio-ivona "fabio-ivona (36 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")

---

Tags

hacktoberfestlaravellaraveldefstudioperformancesdef-studio

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/defstudio-laravel-clog-detector/health.svg)

```
[![Health](https://phpackages.com/badges/defstudio-laravel-clog-detector/health.svg)](https://phpackages.com/packages/defstudio-laravel-clog-detector)
```

###  Alternatives

[barryvdh/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k124.3M624](/packages/barryvdh-laravel-debugbar)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k662.9k29](/packages/fruitcake-laravel-debugbar)[spatie/laravel-ignition

A beautiful error page for Laravel applications.

566146.7M471](/packages/spatie-laravel-ignition)[glhd/laravel-dumper

382801.4k](/packages/glhd-laravel-dumper)[clickbar/laravel-magellan

This package provides functionality for working with the postgis extension in Laravel.

423715.4k1](/packages/clickbar-laravel-magellan)[spatie/laravel-prometheus

Export Laravel metrics to Prometheus

2651.3M6](/packages/spatie-laravel-prometheus)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
