Query Monitor CLI Package for Laravel
Published on by Paul Redmond
Query Monitor is a Laravel package by Supliu that monitors real-time queries using an artisan command:
Supliu Query Monitor is a library for monitoring Queries in real-time using Laravel Artisan Command. Basically, it opens a socket listening and displays (on a terminal) the queries executed in your Laravel application.
Image credit: Supliu Query Monitor Repo
The CLI runs in the foreground and updates the console when new queries run in the application:
php artisan laravel-query-monitor # You can also specify the host and portphp artisan laravel-query-monitor \ --host="192.168.0.2" \ --port=8082
Under the hood, this package uses ReactPHP, an “Event-driven, non-blocking I/O with PHP.” This query monitor package is an excellent example of using React PHP’s Server
and Connector
classes to communicate between the application and the open socket.
You can learn more about this package, get full installation instructions, and view the source code on GitHub at supliu/laravel-query-monitor