PHPackages                             eusonlito/laravel-pulse-apps-load - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. eusonlito/laravel-pulse-apps-load

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

eusonlito/laravel-pulse-apps-load
=================================

A Laravel Pulse card to show Memory and CPU usage

2053.0k—4.2%[2 issues](https://github.com/eusonlito/LaravelPulse-AppsLoad/issues)PHP

Since Feb 5Pushed 2y ago1 watchersCompare

[ Source](https://github.com/eusonlito/LaravelPulse-AppsLoad)[ Packagist](https://packagist.org/packages/eusonlito/laravel-pulse-apps-load)[ RSS](/packages/eusonlito-laravel-pulse-apps-load/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

AppsLoad card for Laravel Pulse
===============================

[](#appsload-card-for-laravel-pulse)

This card will show you system apps load.

[![Screenshot from 2023-12-11 16-18-49](https://private-user-images.githubusercontent.com/644551/289582003-9a501cde-0055-457c-b863-ed063bad84cf.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzUzMzM0NTMsIm5iZiI6MTc3NTMzMzE1MywicGF0aCI6Ii82NDQ1NTEvMjg5NTgyMDAzLTlhNTAxY2RlLTAwNTUtNDU3Yy1iODYzLWVkMDYzYmFkODRjZi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDA0JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwNFQyMDA1NTNaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0xYjE2ZDI1NTBlMGYxNzBiNDA4ZGQzZjA1NzVkNTMxZjU0NDg4NzhmZTJkOTdjZWI0OWY3OTNhNzY2NzQ3YmMyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.kCScm_sv9CXPjXh9HgZ5DnX9cK3NDJaV3orY_3EZeQA)](https://private-user-images.githubusercontent.com/644551/289582003-9a501cde-0055-457c-b863-ed063bad84cf.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzUzMzM0NTMsIm5iZiI6MTc3NTMzMzE1MywicGF0aCI6Ii82NDQ1NTEvMjg5NTgyMDAzLTlhNTAxY2RlLTAwNTUtNDU3Yy1iODYzLWVkMDYzYmFkODRjZi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDA0JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwNFQyMDA1NTNaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0xYjE2ZDI1NTBlMGYxNzBiNDA4ZGQzZjA1NzVkNTMxZjU0NDg4NzhmZTJkOTdjZWI0OWY3OTNhNzY2NzQ3YmMyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.kCScm_sv9CXPjXh9HgZ5DnX9cK3NDJaV3orY_3EZeQA)

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

[](#installation)

Require the package with Composer:

```
composer require eusonlito/laravel-pulse-apps-load:dev-master
```

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

[](#register-the-recorder)

```
return [
    // ...

    'recorders' => [
+        \EuSonLito\LaravelPulse\AppsLoad\Recorders\AppsLoadRecorder::class => [
+            'enabled' => env('PULSE_APPS_LOAD_ENABLED', true),
+            'sample_rate' => env('PULSE_APPS_LOAD_SAMPLE_RATE', 1),
+            'limit' => env('PULSE_APPS_LOAD_LIMIT', 10),
+            'ignore' => [
+                '#^/pulse$#', // Pulse dashboard...
+            ],
+        ],
    ]
]
```

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 `dashboard.blade.php` file:

```

+

```

That's it!

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity37

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity19

Early-stage or recently created project

 Bus Factor1

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

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/644551?v=4)[Lito](/maintainers/eusonlito)[@eusonlito](https://github.com/eusonlito)

---

Top Contributors

[![eusonlito](https://avatars.githubusercontent.com/u/644551?v=4)](https://github.com/eusonlito "eusonlito (9 commits)")[![nimah79](https://avatars.githubusercontent.com/u/20343056?v=4)](https://github.com/nimah79 "nimah79 (1 commits)")

### Embed Badge

![Health badge](/badges/eusonlito-laravel-pulse-apps-load/health.svg)

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

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B9.2k](/packages/psr-log)[itsgoingd/clockwork

php dev tools in your browser

5.9k27.6M94](/packages/itsgoingd-clockwork)[graylog2/gelf-php

A php implementation to send log-messages to a GELF compatible backend like Graylog2.

41838.2M138](/packages/graylog2-gelf-php)[bugsnag/bugsnag-psr-logger

Official Bugsnag PHP PSR Logger.

32132.5M2](/packages/bugsnag-bugsnag-psr-logger)[consolidation/log

Improved Psr-3 / Psr\\Log logger based on Symfony Console components.

15462.2M7](/packages/consolidation-log)[ekino/newrelic-bundle

Integrate New Relic into Symfony2

28111.2M8](/packages/ekino-newrelic-bundle)

PHPackages © 2026

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