kefir500/pulse-db-processes

Database process monitoring for Laravel Pulse

v1.0.0 2025-08-16 16:11 UTC

This package is not auto-updated.

Last update: 2025-08-17 01:54:02 UTC


README

Latest Version on Packagist

Database process monitoring for Laravel Pulse.

Installation

Install the package via Composer:

composer require kefir500/pulse-db-processes

Optionally, you can publish the views:

php artisan vendor:publish --tag="pulse-db-processes-views"

Usage

This package currently supports MySQL and MariaDB.

You can add the cards below to the Pulse dashboard in dashboard.blade.php.

🧩 Database Process List

This card displays a list of current database processes running on the server:

<livewire:db-process-list />

You can also specify custom database connections:

<livewire:db-process-list connection="default" />
<livewire:db-process-list connection="client" />

🧩 Database Process Count

This card displays a line chart of the database process count over time:

<livewire:db-process-count />

To capture database process count metrics, add the recorder to the recorders section of your Pulse config in config/pulse.php:

Kefir500\PulseDbProcesses\Recorders\DbProcessCount::class => [
    'connections' => ['default', 'client'],
],

License

The MIT License (MIT). Please see License File for more information.