PHPackages                             dazza-dev/pulse-duplicate-queries - 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. dazza-dev/pulse-duplicate-queries

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

dazza-dev/pulse-duplicate-queries
=================================

Laravel Pulse Duplicate Queries provides a ready-to-use list of duplicate queries for your Laravel application.

v1.0.0(11mo ago)0464MITPHPPHP &gt;=8.1

Since May 22Pushed 11mo ago1 watchersCompare

[ Source](https://github.com/dazza-dev/pulse-duplicate-queries)[ Packagist](https://packagist.org/packages/dazza-dev/pulse-duplicate-queries)[ RSS](/packages/dazza-dev-pulse-duplicate-queries/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (5)Versions (2)Used By (0)

Duplicate queries card for Laravel Pulse
========================================

[](#duplicate-queries-card-for-laravel-pulse)

[![PulseDuplicateQueriesPreview](https://private-user-images.githubusercontent.com/21293561/446475326-18877ff2-c0cf-40af-bc43-d8c4671d523c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ4Njc5MjAsIm5iZiI6MTc3NDg2NzYyMCwicGF0aCI6Ii8yMTI5MzU2MS80NDY0NzUzMjYtMTg4NzdmZjItYzBjZi00MGFmLWJjNDMtZDhjNDY3MWQ1MjNjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjAzMzAlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwMzMwVDEwNDcwMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTA1ZjA5YjUyYWVlZWY2ZGQwMmE4YTgyY2Y0N2Q0ODE0MjkyNTc0OGJkYzkxYTQyNzA4NTBmYmQ4NjZmOWIzMDEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.wZnaTReX83tH0U-GY8V6AG6S6Wt-XVLNsh0ZPvjCfDU)](https://private-user-images.githubusercontent.com/21293561/446475326-18877ff2-c0cf-40af-bc43-d8c4671d523c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ4Njc5MjAsIm5iZiI6MTc3NDg2NzYyMCwicGF0aCI6Ii8yMTI5MzU2MS80NDY0NzUzMjYtMTg4NzdmZjItYzBjZi00MGFmLWJjNDMtZDhjNDY3MWQ1MjNjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjAzMzAlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwMzMwVDEwNDcwMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTA1ZjA5YjUyYWVlZWY2ZGQwMmE4YTgyY2Y0N2Q0ODE0MjkyNTc0OGJkYzkxYTQyNzA4NTBmYmQ4NjZmOWIzMDEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.wZnaTReX83tH0U-GY8V6AG6S6Wt-XVLNsh0ZPvjCfDU)

A Laravel Pulse recorder and card package designed to monitor and visualize database query duplication per HTTP request.

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

[](#installation)

Require the package with Composer:

```
composer require dazza-dev/pulse-duplicate-queries
```

Register the recorder
---------------------

[](#register-the-recorder)

Right now, in each request, the system will check how many queries are being executed and how many of them are duplicated. To run the checks you must add the `DuplicatedQueriesRecorder` to the `config/pulse.php` file.

```
    'recorders' => [
        \DazzaDev\PulseDuplicateQueries\Recorders\DuplicateQueriesRecorder::class => [
            'enabled' => env('PULSE_DUPLICATED_QUERIES_BY_REQUEST_ENABLED', true),
            'sample_rate' => env('PULSE_DUPLICATED_QUERIES_BY_REQUEST_SAMPLE_RATE', 1)
        ],
    ]
```

You also need to be running [the `pulse:check` command](https://laravel.com/docs/10.x/pulse#dashboard-cards).

Add to your dashboard
---------------------

[](#add-to-your-dashboard)

To add the card to the Pulse dashboard, you must first [publish the vendor view](https://laravel.com/docs/10.x/pulse#dashboard-customization).

Then, you can modify the `resources/views/vendor/pulse/dashboard.blade.php` file:

```

```

Contributions
-------------

[](#contributions)

Contributions are welcome. If you find any bugs or have ideas for improvements, please open an issue or send a pull request. Make sure to follow the contribution guidelines.

Author
------

[](#author)

Laravel Batch Validation was created by [DAZZA](https://github.com/dazza-dev).

License
-------

[](#license)

This project is licensed under the [MIT License](https://opensource.org/licenses/MIT).

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance50

Moderate activity, may be stable

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

352d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0a4e49637e94903e3732c3cf0c3e23b2e7a85286ab196f1ff078b0cea058f8b6?d=identicon)[dazza-dev](/maintainers/dazza-dev)

---

Top Contributors

[![dazza-dev](https://avatars.githubusercontent.com/u/21293561?v=4)](https://github.com/dazza-dev "dazza-dev (1 commits)")

---

Tags

duplicatequeriespulse

###  Code Quality

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/dazza-dev-pulse-duplicate-queries/health.svg)

```
[![Health](https://phpackages.com/badges/dazza-dev-pulse-duplicate-queries/health.svg)](https://phpackages.com/packages/dazza-dev-pulse-duplicate-queries)
```

###  Alternatives

[fruitcake/laravel-telescope-toolbar

Toolbar for Laravel Telescope based on Symfony Web Profiler

8041.6M3](/packages/fruitcake-laravel-telescope-toolbar)[laracraft-tech/laravel-xhprof

Easy XHProf setup to profile your laravel application!

235321.4k](/packages/laracraft-tech-laravel-xhprof)[hosmelq/laravel-pulse-schedule

Laravel Pulse card that list all scheduled tasks.

60423.4k](/packages/hosmelq-laravel-pulse-schedule)[spatie/laravel-artisan-dd

Run dd from your commandline

16387.7k1](/packages/spatie-laravel-artisan-dd)[bavix/laravel-xhprof

Quick profiling of your code for Laravel

22156.6k](/packages/bavix-laravel-xhprof)

PHPackages © 2026

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