eusonlito/laravel-pulse-apps-load

A Laravel Pulse card to show Memory and CPU usage
66,424 20
Install
composer require eusonlito/laravel-pulse-apps-load
PHP:^8.1
License:MIT
Last Updated:Feb 5, 2024
Links: GitHub  ·  Packagist
Maintainer: eusonlito

AppsLoad card for Laravel Pulse

This card will show you system apps load.

Screenshot from 2023-12-11 16-18-49

Installation

Require the package with Composer:

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

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.

Add to your dashboard

To add the card to the Pulse dashboard, you must first publish the vendor view.

Then, you can modify the dashboard.blade.php file:

<x-pulse>
+    <livewire:apps-load cols="4" rows="8" />

    <livewire:pulse.servers cols="full" />

    <livewire:pulse.usage cols="4" rows="2" />

    <livewire:pulse.queues cols="4" />

    <livewire:pulse.cache cols="4" />

    <livewire:pulse.slow-queries cols="8" />

    <livewire:pulse.exceptions cols="6" />

    <livewire:pulse.slow-requests cols="6" />

    <livewire:pulse.slow-jobs cols="6" />

    <livewire:pulse.slow-outgoing-requests cols="6" />
</x-pulse>

That's it!

Related Packages

doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444
laravel/serializable-closure

Laravel Serializable Closure provides an easy and secure way to serialize closur...

404,034,618 608
nunomaduro/collision

Cli error handling for console/command-line PHP applications.

384,821,166 4,658