PHPackages                             anourvalar/laravel-pulse - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. anourvalar/laravel-pulse

ActiveLibrary[HTTP &amp; Networking](/categories/http)

anourvalar/laravel-pulse
========================

Additional cards for Laravel Pulse

1.4.7(1mo ago)35.4k↓25.7%MITBladePHP ^8.1

Since Sep 27Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/AnourValar/laravel-pulse)[ Packagist](https://packagist.org/packages/anourvalar/laravel-pulse)[ Docs](https://github.com/AnourValar/laravel-pulse)[ RSS](/packages/anourvalar-laravel-pulse/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (14)Versions (26)Used By (0)

Additional cards for Laravel Pulse
==================================

[](#additional-cards-for-laravel-pulse)

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

[](#installation)

```
composer require anourvalar/laravel-pulse
```

Schedule (cron)
---------------

[](#schedule-cron)

[![Demo](./images/pulse-schedule.png)](./images/pulse-schedule.png)

Add recorder to the config/pulse.php:

```
AnourValar\LaravelPulse\Recorders\ScheduleRecorder::class => [
    'enabled' => env('PULSE_ANOURVALAR_SCHEDULE_ENABLED', true),
    'sample_rate' => env('PULSE_ANOURVALAR_SCHEDULE_SAMPLE_RATE', 1),
    'ignore' => [],
],
```

Add card to the vendor/pulse/dashboard.blade.php:

```

```

HTTP Requests (count &amp; response time)
-----------------------------------------

[](#http-requests-count--response-time)

[![Demo](./images/pulse-http-requests.png)](./images/pulse-http-requests.png)

Add recorder to the config/pulse.php:

```
AnourValar\LaravelPulse\Recorders\HttpRequestsRecorder::class => [
    'enabled' => env('PULSE_ANOURVALAR_HTTP_REQUESTS_ENABLED', true),
    'sample_rate' => env('PULSE_ANOURVALAR_HTTP_REQUESTS_SAMPLE_RATE', 1),
    'ignore' => ['#/admin/#', '#/livewire/#'],
],
```

Add cards to the vendor/pulse/dashboard.blade.php:

```

```

Optionally: To record the latency between the web server and the PHP worker, configure your web server to add a timestamp header:

```
fastcgi_param HTTP_X_REQUEST_START $msec; # fpm
proxy_set_header X-Request-Start $msec; # octane

```

Database (queries)
------------------

[](#database-queries)

[![Demo](./images/pulse-database.png)](./images/pulse-database.png)

Add recorder to the config/pulse.php:

```
AnourValar\LaravelPulse\Recorders\DatabaseRecorder::class => [
    'enabled' => env('PULSE_ANOURVALAR_DATABASE_ENABLED', true),
    'sample_rate' => env('PULSE_ANOURVALAR_DATABASE_SAMPLE_RATE', 1),
    'ignore' => ['#pulse_#'],
],
```

Add card to the vendor/pulse/dashboard.blade.php:

```

```

Ping (Response time &amp; status code)
--------------------------------------

[](#ping-response-time--status-code)

[![Demo](./images/pulse-ping.png)](./images/pulse-ping.png)

Add recorder to the config/pulse.php:

```
AnourValar\LaravelPulse\Recorders\PingRecorder::class => [
    'enabled' => env('PULSE_ANOURVALAR_PING_ENABLED', true),
    'urls' => ['/'],
],
```

Add card to the vendor/pulse/dashboard.blade.php:

```

```

FPM (Workers count)
-------------------

[](#fpm-workers-count)

[![Demo](./images/pulse-fpm.png)](./images/pulse-fpm.png)

Add recorder to the config/pulse.php:

```
AnourValar\LaravelPulse\Recorders\FpmRecorder::class => [
    'enabled' => env('PULSE_ANOURVALAR_FPM_ENABLED', true),
    'sample_rate' => env('PULSE_ANOURVALAR_FPM_SAMPLE_RATE', 1),
],
```

Add card to the vendor/pulse/dashboard.blade.php:

```

```

Slow Commands
-------------

[](#slow-commands)

[![Demo](./images/pulse-slow-commands.png)](./images/pulse-slow-commands.png)

Add recorder to the config/pulse.php:

```
AnourValar\LaravelPulse\Recorders\SlowCommandsRecorder::class => [
    'enabled' => env('PULSE_ANOURVALAR_SLOW_COMMANDS_ENABLED', true),
    'sample_rate' => env('PULSE_ANOURVALAR_SLOW_COMMANDS_SAMPLE_RATE', 1),
    'threshold' => env('PULSE_ANOURVALAR_SLOW_COMMANDS_THRESHOLD', 1000),
    'ignore' => ['#^tinker#', '#^schedule\:#', '#^horizon\:#', '#invoke\-serialized\-closure#'],
],
```

Add card to the vendor/pulse/dashboard.blade.php:

```

```

Latency Jobs
------------

[](#latency-jobs)

[![Demo](./images/pulse-latency-jobs.png)](./images/pulse-latency-jobs.png)

Add recorder to the config/pulse.php:

```
AnourValar\LaravelPulse\Recorders\LatencyJobsRecorder::class => [
    'enabled' => env('PULSE_ANOURVALAR_LATENCY_JOBS_ENABLED', true),
    'sample_rate' => env('PULSE_ANOURVALAR_LATENCY_JOBS_SAMPLE_RATE', 1),
    'threshold' => env('PULSE_ANOURVALAR_LATENCY_JOBS_THRESHOLD', 10000),
    'ignore' => ['#pulse#'],
],
```

Add card to the vendor/pulse/dashboard.blade.php:

```

```

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance89

Actively maintained with recent releases

Popularity27

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

Every ~22 days

Recently: every ~13 days

Total

25

Last Release

58d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/db1765d50b04dca380c835746bee50f75be1683fd930f276def046cef17f5d2c?d=identicon)[AnourValar](/maintainers/AnourValar)

---

Top Contributors

[![AnourValar](https://avatars.githubusercontent.com/u/54237693?v=4)](https://github.com/AnourValar "AnourValar (30 commits)")

---

Tags

httpresponselaravelmonitoringcodedatabaseperformancemysqlpostgresqlqueryanourvalartimeschedulestatuspingrequestscountpulsehits

###  Code Quality

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/anourvalar-laravel-pulse/health.svg)

```
[![Health](https://phpackages.com/badges/anourvalar-laravel-pulse/health.svg)](https://phpackages.com/packages/anourvalar-laravel-pulse)
```

###  Alternatives

[bvanhoekelen/performance

PHP performance tool analyser your script on time, memory usage and db query. Support Laravel and Composer for web, web console and command line interfaces.

521774.3k4](/packages/bvanhoekelen-performance)[tomschlick/request-migrations

HTTP Request Migrations

1844.5k](/packages/tomschlick-request-migrations)[sarfraznawaz2005/indexer

Laravel package to monitor SELECT queries and offer best possible INDEX fields.

562.7k](/packages/sarfraznawaz2005-indexer)[middlewares/response-time

Middleware to save the response time into the X-Response-Time header

14278.7k4](/packages/middlewares-response-time)[dragon-code/laravel-http-logger

Logging incoming HTTP requests

319.8k3](/packages/dragon-code-laravel-http-logger)

PHPackages © 2026

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