supliu / laravel-query-monitor by jansenfelipe

Laravel Query Monitor
78,407
278
10
Package Data
Maintainer Username: jansenfelipe
Maintainer Contact: jansen.felipe@gmail.com (Jansen Felipe)
Package Create Date: 2020-04-27
Package Last Update: 2024-01-04
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:27:56
Package Statistics
Total Downloads: 78,407
Monthly Downloads: 1,515
Daily Downloads: 40
Total Stars: 278
Total Watchers: 10
Total Forks: 35
Total Open Issues: 6

Laravel Query Monitor

Supliu Laravel Query Monitor is library to monitoring Queries in real-time using Laravel Artisan Command. Basically it opens a socket listening and displays (on terminal) the queries executed in your Laravel application.

How to install

  1. Use composer to install this package
composer require --dev supliu/laravel-query-monitor
  1. Run publish command
php artisan vendor:publish --provider="Supliu\LaravelQueryMonitor\ServiceProvider"

How to use

Open you terminal and execute:

php artisan laravel-query-monitor

Now just perform some action in your application that performs some interaction with the database.

Customize

By default, the query listening service will run on host 0.0.0.0 and port 8081. You can customize both the host and the port by providing the optional arguments:

php artisan laravel-query-monitor --host="192.168.0.2" --port=8082

If you change the host and port parameters, you will also need to change the configuration file config/laravel-query-monitor.php.

License

The Laravel Query Monitor is open-sourced project licensed under the MIT license.