PHPackages                             satheez/laravel-rate-limit-dashboard - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. satheez/laravel-rate-limit-dashboard

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

satheez/laravel-rate-limit-dashboard
====================================

A Laravel package that records, aggregates, and visualizes rate-limit activity.

v1.0.2(2mo ago)04MITPHPPHP ^8.2CI failing

Since May 23Pushed 2mo agoCompare

[ Source](https://github.com/satheez/laravel-rate-limit-dashboard)[ Packagist](https://packagist.org/packages/satheez/laravel-rate-limit-dashboard)[ Docs](https://github.com/satheez/laravel-rate-limit-dashboard)[ RSS](/packages/satheez-laravel-rate-limit-dashboard/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (3)Dependencies (7)Versions (6)Used By (0)

Laravel Rate-Limit Dashboard
============================

[](#laravel-rate-limit-dashboard)

**Visibility and operational controls for Laravel rate-limiting.**

[![Laravel Rate-Limit Dashboard](docs/assets/banner.png)](docs/assets/banner.png)

[![Tests](https://github.com/satheez/laravel-rate-limit-dashboard/actions/workflows/tests.yml/badge.svg)](https://github.com/satheez/laravel-rate-limit-dashboard/actions/workflows/tests.yml)[![PHP](https://camo.githubusercontent.com/187240af044d09d5b14a1d9d9ebdf3f7a993e4c7bc09bdb46b4ba661a891bf5b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e322532422d626c7565)](https://www.php.net)[![Laravel](https://camo.githubusercontent.com/88ce7f9ac798288a91de4918224da3cf354ffc092c40118a331bb5fa3c59f968/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d3131253230253743253230313225323025374325323031332d726564)](https://laravel.com)[![License](https://camo.githubusercontent.com/8b9c99e354d7d68697820d2ba5966c50aba292a6bc43b5a202ec4866c08a1ce3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7361746865657a2f6c61726176656c2d726174652d6c696d69742d64617368626f6172642e737667)](LICENSE.md)

---

Laravel's built-in `RateLimiter` facade and throttle middleware allow you to define rate limits, but they provide **no visual interface** to monitor usage or adjust limits in production.

Laravel Rate-Limit Dashboard bridges this gap with instrumentation, persisted metrics, a secured dashboard, runtime limiter configuration, health checks, JSON endpoints, retention pruning, and threshold mail alerts.

> **Who is hitting the rate limits? Which endpoints are being abused? Can we adjust limits without redeploying?**

---

The Problem
-----------

[](#the-problem)

When users encounter HTTP `429 (Too Many Requests)` errors, developers traditionally have no built-in way to:

- See the offending IP or API token
- Identify exactly which endpoint is being hammered
- Adjust the rate limits gracefully without redeploying code

This leads to support tickets, unchecked abuse, and misconfigured limits.

---

Features
--------

[](#features)

**Real-Time Visibility**

- Dashboard showing total requests, throttled requests, utilisation, hourly volume, health checks, limiter activity, and recent events
- Top offenders grouped by IP, user ID, or API token through the JSON API

**Dynamic Configuration**

- Save package-managed limiter settings from the UI
- Apply per-user and per-IP overrides when using the package instrumenter middleware

**Alerts, Checks, and Maintenance**

- Built-in health checks for storage, dashboard protection, utilisation, decay settings, offenders, and unconfigured routes
- `rate-limit:check-alerts` mail notifications for configured threshold breaches
- `rate-limit:prune` retention cleanup for old raw events

**Storage**

- Uses the host application's configured SQL database through Eloquent
- Stores raw events, runtime limiter configuration, audit entries, and minute/hour/day summaries

---

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

[](#installation)

```
composer require satheez/laravel-rate-limit-dashboard
```

Publish configuration and migrations:

```
php artisan vendor:publish --provider="Sa\RateLimitDashboard\RateLimitDashboardServiceProvider" --tag="rate-limit-dashboard-config"
php artisan vendor:publish --provider="Sa\RateLimitDashboard\RateLimitDashboardServiceProvider" --tag="rate-limit-dashboard-migrations"
php artisan migrate
```

---

Quick Start
-----------

[](#quick-start)

Use the package middleware in place of Laravel's throttle middleware for routes you want to enforce and record:

```
Route::middleware(\Sa\RateLimitDashboard\Http\Middleware\RateLimitInstrumenter::class.':api')
    ->get('/api/search', SearchController::class);
```

Navigate to the dashboard route (default: `/admin/rate-limits`) after defining the `viewRateLimitDashboard` gate or using your own dashboard middleware.

---

Documentation
-------------

[](#documentation)

DocumentDescription[Installation](docs/installation.md)Requirements, setup, and migrations[Usage](docs/usage.md)Dashboard usage and programmatic access[Configuration](docs/configuration.md)Full `config/rate-limit-dashboard.php` reference[Checks Reference](docs/checks.md)Built-in health checks and alert severities[Scoring &amp; Thresholds](docs/scoring.md)How offenders are ranked and scored[Output &amp; UI](docs/output.md)Dashboard interface details and JSON API responses[Architecture](docs/architecture.md)System design, instrumentation layer, data processing[Comparison](docs/comparison.md)How this compares to Laravel Pulse, Telescope, etc.[FAQ](docs/faq.md)Common questions regarding performance and setup---

Security
--------

[](#security)

See [SECURITY.md](SECURITY.md) for the vulnerability reporting policy.

License
-------

[](#license)

MIT — see [LICENSE.md](LICENSE.md).

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance87

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 84.6% 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 ~0 days

Total

3

Last Release

62d ago

PHP version history (2 changes)v1.0.0PHP ^8.1

v1.0.2PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/6590c21841f4323f7322cb865bc535b1b58b00b636aba0c3bcc08a1b1f53819c?d=identicon)[Satheez](/maintainers/Satheez)

---

Top Contributors

[![isatheez](https://avatars.githubusercontent.com/u/252316041?v=4)](https://github.com/isatheez "isatheez (11 commits)")[![satheez](https://avatars.githubusercontent.com/u/11453046?v=4)](https://github.com/satheez "satheez (2 commits)")

---

Tags

laravelrate limitsatheezrate-limit-dashboardlaravel-rate-limit-dashboard

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/satheez-laravel-rate-limit-dashboard/health.svg)

```
[![Health](https://phpackages.com/badges/satheez-laravel-rate-limit-dashboard/health.svg)](https://phpackages.com/packages/satheez-laravel-rate-limit-dashboard)
```

###  Alternatives

[firefly-iii/data-importer

Firefly III Data Import Tool.

8055.8k](/packages/firefly-iii-data-importer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[ronasit/laravel-helpers

Provided helpers function and some helper class.

2085.6k31](/packages/ronasit-laravel-helpers)[team-nifty-gmbh/tall-datatables

Server-side rendered datatables for Laravel and Livewire

1320.9k4](/packages/team-nifty-gmbh-tall-datatables)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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